I saw some tutorial where the command was:
npm install --save
What does the --save option mean?
--save
Not able to find the a
npm install package_x --save
The given package (package_x) will be saved in package.json inside dependencies. if you add
npm install <> --save-dev
then it will be saved inside devDependencies.