start npm project using pm2 code example
Example 1: pm2 to start npm run dev
pm2 start "npm run dev" --name myAppName
Example 2: pm2 node start
# only start will make it
pm2 start app.js
pm2 start "npm run dev" --name myAppName
# only start will make it
pm2 start app.js