ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## 安装 ``` //isntall &Update pm2 : npm install pm2 -g && pm2 update //Start and add a process to the pm2 process list: pm2 start app.js [--name app] //Show the process list: pm2 ls //Stop and delete a process from the pm2 process list: pm2 delete app //Stop, start and restart a process from the process list: pm2 stop (app|all) pm2 start (app|all) pm2 restart (app|all) //监控访问信息 , js 的 `console.log()`会打印出来 pm2 monit pm2 logs ```