What is the difference between npm build
vs, npm run build
and npm install
vs npm run install
?
Asked
Active
Viewed 1,299 times
0
-
2`npm build` is an alias for `npm run build` `npm install` is an alias for `npm run install` See docs: https://docs.npmjs.com/cli/run-script – Nicolae Maties Sep 26 '19 at 10:54
-
1Possible duplicate of [What is the difference between npm install and npm run build?](https://stackoverflow.com/questions/43664200/what-is-the-difference-between-npm-install-and-npm-run-build) – Kobe Sep 26 '19 at 10:59