What is the difference between:
npm install [package_name] --save
and
npm install [package_name] --save-dev
What does this mean?
Answer
--save-devis used to save the package for development purpose.
Example: unit tests, minification..--saveis used to save the
package required for the application to run.
No comments:
Post a Comment