使用恢复npm包的命令

时间:2017-12-09 16:14:23

标签: npm npm-install

当我从我的仓库下载项目时,其根目录中有package.json,哪个命令是使用npm installnpm install restore的正确命令?

2 个答案:

答案 0 :(得分:14)

npm install的行为是

    没有任何参数的
  • npm install将安装package.json文件夹中node_modules中找到的所有软件包。

  • npm install <package_name>将安装package_name。在您的情况下,将下载restore包,并将其保存在node_modules文件夹中。 (https://www.npmjs.com/package/restore

答案 1 :(得分:2)

只需输入:

npm i

来自帮助:

>npm i -h

npm install (with no args, in package dir)
npm install [<@scope>/]<pkg>
npm install [<@scope>/]<pkg>@<tag>
npm install [<@scope>/]<pkg>@<version>
npm install [<@scope>/]<pkg>@<version range>
npm install <folder>
npm install <tarball file>
npm install <tarball url>
npm install <git:// url>
npm install <github username>/<github project>

aliases: i, isntall, add
common options: [--save-prod|--save-dev|--save-optional] [--save-exact] [--no-save]