I'm looking at the doc page for node and I'm not clear if
npm install gulp-util
is the same as
npm install gulp-util --save
In the doc it says:
"By default, npm install will install all modules listed as dependencies in package.json"
That feels like what --save does,
Just running npm install
with no arguments, will install everything listed in the dependencies
area of the package.json file.
Running npm install <package-name>
will install that package only, and will not add the package to the dependencies list in package.json
Running npm install <package-name> --save
will install that package only, and will add the package to the dependencies list.
Running npm install <package-name>
will install that package, and will add the package to the dependencies list.