Answers for "npm save flag"

0

npm save flag

npm install <package_name> --save installs the package and updates the dependencies in your package.json. Since this question was asked there was a change to npm, such that --save has become the default option, so you do not need to use --save to update the dependencies.
https://stackoverflow.com/a/36023013
Posted by: Guest on March-18-2022

Browse Popular Code Answers by Language