pm2 run command code example

Example 1: install pm2

npm install pm2 -g

Example 2: 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 3: how to run script command in pm2

pm2 start npm --name "my-app-name" -- run "npm:script"

Example 4: pm2 install

$ pm2 restart app_name
$ pm2 reload app_name
$ pm2 stop app_name
$ pm2 delete app_name

Example 5: pm2 install

$ pm2 start bashscript.sh
$ pm2 start python-app.py --watch
$ pm2 start binary-file -- --port 1520