SyntaxFix
Write A Post
Hire A Developer
Questions
npm start will run whatever you have defined for the start command of the scripts object in your package.json file.
npm start
start
scripts
package.json
So if it looks like this:
"scripts": { "start": "ng serve" }
Then npm start will run ng serve.
ng serve