how to start a script with a name pm2 code example
Example 1: 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 2: how to run script command in pm2
pm2 start npm --name "my-app-name" -- run "npm:script"