What is the difference between npm run serve and npm run dev in vuejs. Why should i use npm run serve command to run the project
1 Answer
npm run serve basically is just saying "npm please run the command I defined under the name serve in package.json" the same happens with npm run dev.
Given this the commands can do the exact same thing, similar things, or very different things. Usually they are a shorthand for running a dev server on localhost, but it’s not a rule, only a convention.
So you'll need to check in your package.json file and look for
"scripts": {
"serve": "[list of commands here]",
"dev": "[list of commands here]"
},
package.jsonfile. The difference is whatever is defined in that file. It's different for everyone.