pm2 install code example

Example 1: pm2 install

$ npm install pm2@latest -g
# or
$ yarn global add pm2

Example 2: pm2 install

$ pm2 ecosystem

Example 3: pm2 install

$ pm2 [list|ls|status]

Example 4: pm2 install

$ pm2 logs --lines 200

Example 5: pm2 install

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

Example 6: pm2 install

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

Example 7: pm2 install

$ pm2 start app.js -i max

Tags:

Misc Example