start pm2 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: start stop restart pm2
pm2 start app.js --name "my-api"
pm2 start web.js --name "web-interface"
pm2 stop web-interface
pm3 restart web-interface
Example 4: pm2 install
$ pm2 [list|ls|status]
Example 5: pm2 stop process
pm2 stop <processname>