Is there a way for pm2 to run an npm start script or do you just have to run pm2 start app.js
pm2 start app.js
So in development
npm start
See to enable clustering:
pm2 start npm --name "AppName" -i 0 -- run start
What do you think?