pm2基本命令# 启动程序
pm2 start app.js
pm2 start npm --name pro -- run dev
# 查看程序
pm2 start list
pm2 monit
pm2 logs
# 重启
pm2 r
2019-11-02