pm2 start code example
Example 1: install pm2
npm install pm2 -g
Example 2: pm2 to start npm run dev
pm2 start "npm run dev" --name myAppName
Example 3: pm2 install
$ npm install pm2@latest -g
# or
$ yarn global add pm2
Example 4: pm2 start npm start
pm2 start npm --name "app name" -- start
Example 5: pm2 show command
pm2 describe
Example 6: pm2 --run
pm2 start npm --name AppName -- run start-npm-dev