Answered
I've seen the npm install --save-dev
command used in several different places, but can't figure out what the --save-dev
option does.
It adds the NPM package to the "devDependencies"
list in your package.json
file.
These are the packages your application needs when it is running in the development environment.
It adds the package to the "devDependencies"
for your application.