We can run scripts that are listed in
scripts
key, inside
package.json
file. If the content is the following
"scripts": {
    "start": "node app.js",
    "server": "live-server"
}
Then we can run
npm run start
and npm will run
node app.js
We can also run
npm run server
and it will run
live-server
by Valeri Tandilashvili
4 years ago
NPM
NPM Crash Course
0
Pro tip: use ```triple backticks around text``` to write in code fences