remove pm2 code example
Example 1: uninstall pm2
pm2 kill
npm remove pm2 -g
#test with :
which pm2
Example 2: install pm2
npm install pm2 -g
Example 3: pm2 remove id
# stop
pm2 stop process_name
# delete
pm2 delete process_name
Example 4: pm2 status
pm2 status <processname>
Example 5: 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