프로세스 관리 도구
PM2 is a Production Process Manager for Node.js applications
with a built-in Load Balancer.
npm install -g pm2
]$ pm2 start server.prod.js
pm2 start app.js // 애플리케이션 시작
pm2 stop app.js // 애플리케이션 중지
pm2 restart app.js // 애플리케이션 재시작
pm2 delete app.js // 애플리케이션 삭제
html$ pm2 monit