When I issue the command npm start, it starts the server and I see the following output
expressproject@0.0.0 start /var/www/html/helix/expressproject
node ./bin/www
Is there a command for npm stop?
After some searching, I see that the package.json has only start
"scripts": {
"start": "node ./bin/www"
},
How can I stop or restart the server?
What happens if I press Ctrl + z, it only terminates the npm start. Does the server really stop.