pm2 start script code example
Example 1: pm2 start npm start
pm2 start npm --name "app name" -- start
Example 2: pm2 --run
pm2 start npm --name AppName -- run start-npm-dev
Example 3: how to run script command in pm2
pm2 start npm --name "myApp" -- run "start:test"
pm2 start npm --name "myApp" -- run "start:staging"
pm2 start npm --name "myApp" -- run "start:production"
Example 4: how to run script command in pm2
pm2 start npm --name "my-app-name" -- run "npm:script"