包安装后执行脚本

时间:2016-11-10 06:20:53

标签: node.js npm npm-install

现在,我有postinstall

之后运行脚本
npm install

但是,我正在寻找一种在安装单个软件包后运行脚本的方法

npm install jquery --save

这可能吗?如果是这样,这是否适用于Windows,是否有办法获取已安装软件包的名称(在给定示例中为jquery)?

1 个答案:

答案 0 :(得分:0)

我在package.json features上看不到这一点。

因此可以在prestart中进行,但是jquery不会以这种方式出现在devDependencies中:

{
  ...
  "devDependencies": {
    "bower": "1.3.x",
    "uglifyjs": "2.4.10",
    ... your other dependencies 
  },
  "scripts": {
    "prestart": "npm install jquery@#.#.# ; <yourcommand> ; npm install",
    ...
  }
}