1. npm start 사용하는 방법: pm2 start npm -- start 2. PM2 프로세스에 프로세스명을 할당할 수 있는 사용 방법: pm2 start npm --name ["app name"] -- [script] ex) pm2 start npm --name "index.ts" -- start 주의!!! 실행시킬 파일이 존재하는 디렉토리에서 실행해야 제대로 작동한다! 참고: Can pm2 run an 'npm start' script Is there a way for pm2 to run an npm start script or do you just have to run pm2 start app.js So in development npm start Then in production with ..