pm2 restart all code example
Example 1: pm2 install
$ npm install pm2@latest -g
# or
$ yarn global add pm2
Example 2: pm2 --run
pm2 start npm --name AppName -- run start-npm-dev
Example 3: pm2 status
pm2 status <processname>
Example 4: 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 5: pm2 stop process
pm2 stop <processname>