npm install save by default

2019-04-08 03:42发布

问题:

It happened too many times that I forgot to add --save when installing node modules. Is there a way to append this option by default? So that whenever I type npm install <package> the package is added to dependencies in package.json.

回答1:

From npm5 , npm will save by default . https://github.com/npm/npm/issues/5108



回答2:

I found out that npm has configuration flags. Setting save=true does exactly what I need. You can add it to .npmrc file (in user's home directory) or invoke a command:

npm config set save=true


回答3:

Mac/Linux

make an alias inside ~/.bash_profile

alias npmi="npm install --save"
//shorter version
alias npmi="npm i -S"

then just type, so that it will automatically save it to package json

npmi mongoose

Windows

same thing, make alias, read more here https://superuser.com/a/49194

doskey npmi=npm i -S $*