pm2 start app.js code example
Example 1: pm2 install
$ npm install pm2@latest -g
# or
$ yarn global add pm2
Example 2: pm2 start npm start
pm2 start npm --name "app name" -- start
Example 3: pm2 status
pm2 status <processname>
Example 4: pm2 stop process
pm2 stop <processname>
Example 5: pm2 install
$ pm2 start bashscript.sh
$ pm2 start python-app.py --watch
$ pm2 start binary-file -- --port 1520