标签: node.js npm
如果我们有这个:
{ "scripts":{ "postinstall":"./scripts/postinstall.sh" } }
然后,只要我们执行
$ npm install
在命令行
我想知道的是,当我们安装像这样的依赖项时,是否有办法运行postinstall挂钩
$ npm install x
我们可以使用一些NPM钩子吗?