run node js using pm2 code example
Example 1: pm2 node start
# only start will make it
pm2 start app.js
Example 2: node server start using pm2
pm2 start app.js -o "/dev/null" -e "/dev/null"
# only start will make it
pm2 start app.js
pm2 start app.js -o "/dev/null" -e "/dev/null"