使用pm2管理node进程
ecosystem.config.js:module.exports = { apps: [ { name: 'app', script: './app.js', watch: true, ignore_watch: ['node_modules'], node_args: ['--inspect'], env: { PORT: 81 } } ]}1、启动node项...