PM(Process Manager)
PM2를 활용한 Node.js 무중단 서비스
[설치]
npm install pm2 -g
[서비스 시작]
pm2 start [파일이름]
[파일 수정 후 바로 적용]
pm2 start [파일이름] --watch -no-daemon
[어플리케이션 리스트 확인]
pm2 list
[어플리케이션 로그 확인]
pm2 log
[Terminal Based Dashboard]
pm2 monit
참조
https://engineering.linecorp.com/ko/blog/pm2-nodejs/
https://pm2.keymetrics.io/docs/usage/quick-start/