You build node.js app with express v4.x then start your app by npm start. My question is how to stop the app? Is there npm stop?
All (3) solotion is :
1- ctlr + C
2- in json file wreite a script that stop
"scripts": { "stop": "killall -SIGINT this-name-can-be-as-long-as-it-needs-to-be" },
*than in command write // npm stop //
3- Restart the pc