pm2 save code example

Example 1: pm2 status

pm2 status <processname>

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 stop process

pm2 stop <processname>

Example 5: pm2

module.exports = {
  apps : [{
    name: "app",
    script: "./app.js",
    env: {
      NODE_ENV: "development",
    },
    env_production: {
      NODE_ENV: "production",
    }
  }, {
     name: 'worker',
     script: 'worker.js'
  }]
}

Tags:

Css Example