“我”标志在npm中有什么作用?
我看到它像这样使用:
npm i backbone.marionette
我查看了npm文档并在Google上搜索了相当数量的文档。我不确定它是旗帜还是命令,或者根本不是npm的东西?
答案 0 :(得分:56)
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.
有关详细信息,请参阅官方文档here
答案 1 :(得分:15)
我是npm-install别名,https://docs.npmjs.com/cli/install中提及。
您可以将它与所有npm-install标志一起使用。例如,下面将使用 npm i
安装angular-js amd live服务器npm i angular2@2.0.0-alpha.45 --save --save-exact
npm i live-server --save-dev