You can use PM2, it’s a production process manager for Node.js applications with a built-in load balancer.
$ npm install pm2 -g
$ pm2 start app.js
pm2 start ./bin/www --name="app"
$ pm2 list
It will list all process. You can then stop / restart your service by using ID or Name of the app with following command.
$ pm2 stop all
$ pm2 stop 0
$ pm2 restart all
$ pm2 logs ['all'|app_name|app_id]