using pm2 to start node code example
Example 1: install pm2
npm install pm2 -g
Example 2: pm2 start npm start
pm2 start npm --name "app name" -- start
Example 3: pm2 node start
# only start will make it
pm2 start app.js
npm install pm2 -g
pm2 start npm --name "app name" -- start
# only start will make it
pm2 start app.js