Open JQChan opened 4 years ago
npm start
node app.js
https://www.douban.com/note/314200231/
npm i -g pm2
或者
yarn global add pm2
2. 使用pm2启动项目
pm2 start app.js
![image](https://user-images.githubusercontent.com/7911342/81889283-b8400f00-95d5-11ea-91af-47bb1db54eda.png) 3. 检查Node项目是否启动
pm2 list
![image](https://user-images.githubusercontent.com/7911342/81889344-e02f7280-95d5-11ea-880f-0e0fb013851d.png) 4. 停止指定的进程
pm2 stop 0 // 进程id
5. 停止所有进程
pm2 stop all
6. 显示所有进程日志
pm2 logs
![image](https://user-images.githubusercontent.com/7911342/82006356-2f3edb80-969a-11ea-8e5d-e69fc75851f3.png) 7. 监视所有进程
pm2 monit
![image](https://user-images.githubusercontent.com/7911342/82006399-4d0c4080-969a-11ea-9dc3-89e9c5b2e08f.png)
npm start
或node app.js
启动,一旦退出终端命令,服务就会停止运行,所以需要使用pm2来启动Node项目https://www.douban.com/note/314200231/
或者
yarn global add pm2
pm2 start app.js
pm2 list
pm2 stop 0 // 进程id
pm2 stop all
pm2 logs
pm2 monit