pm2 remove app from list

C++
npm install pm2 -gpm2 logs <processname>pm2 start app.js --name "my-api"
pm2 start web.js --name "web-interface"

pm2 stop web-interface

pm3 restart web-interfacepm2 start <process>
pm2 stop <process>
pm2 restart <process>
pm2 delete <process>
Source

Also in C++: