npm -i标志是什么意思?


87

npm中的“ i”标志有什么作用?

我看到它像这样使用:

npm i backbone.marionette

我查看了npm文档,并在Google上进行了大量搜索。我不确定这是标志还是命令,或者根本不是npm吗?


1
i与相同-i。那不是一个标志。
Slaks 2015年


等待,那么-i是什么?
krispy 2015年

Answers:


75

i标志用于安装。从文档:

npm install
npm install <pkg>
npm install <pkg>@<tag>
npm install <pkg>@<version>
npm install <pkg>@<version range>
npm install <folder>
npm install <tarball file>
npm install <tarball url>
npm install <git:// url>
npm install <github username>/<github project>

Can specify one or more: npm install ./foo.tgz bar@stable /some/folder
If no argument is supplied and ./npm-shrinkwrap.json is 
present, installs dependencies specified in the shrinkwrap.
Otherwise, installs dependencies from ./package.json.

请参考官方文件以获取更多信息点击这里


2
虽然接受了这个答案,但实际上并没有直接证明问题。该链接也指向npm软件包,而不是官方文档docs.npmjs.com/cli/install。该文档确实指出安装的别名为“ i”,其中此答案未解决该提示。
垃圾桶

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.