npm --save 选项作用
Posted stono
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm --save 选项作用相关的知识,希望对你有一定的参考价值。
npm --save 选项作用
学习了:https://segmentfault.com/q/1010000000403629
-save和save-dev可以省掉你手动修改package.json文件的步骤。 spm install module-name -save 自动把模块和版本号添加到dependencies部分 spm install module-name -save-dve 自动把模块和版本号添加到devdependencies部分
看了api,感觉好像不太用了;
-P, --save-prod: Package will appear in your dependencies. This is the default unless -D or -O are present. -D, --save-dev: Package will appear in your devDependencies. -O, --save-optional: Package will appear in your optionalDependencies. --no-save: Prevents saving to dependencies.
这个应该跟npm的版本有关系;
以上是关于npm --save 选项作用的主要内容,如果未能解决你的问题,请参考以下文章
npm install cypress vs npm install cypress --save-dev