Last Updated: February 25, 2016
·
2.336K
· helder

Avoid npm install --save

I have used npm install --save once I must include a new dependency at package.json. I found out a trick to avoid this flag:

npm config set save true

You can find more npm tips at:
https://gist.github.com/AvnerCohen/4051934