pm2(推荐)
官网地址:http://pm2.io/
npm install -g pm2
pm2 start scripts/start.js // 启动
pm2 start scripts/start.js -i max //启动 使用所有CPU核心的集群
pm2 stop scripts/start.js // 停止
pm2 stop all // 停止所有
pm2 restart scripts/start.js // 重启
pm2 restart all // 重启所有
pm2 delete scripts/start.js // 关闭
nohup
nohup node scripts/start.js > error.log 2>&1 &
forever
github地址: https://github.com/nodejitsu/forever
npm install forever -g
forever start scripts/start.js //启动
forever stop scripts/start.js //关闭
forever stopall //关闭全部
forever restart scripts/start.js //重启
forever restartall //重启全部
npm
安装n模块:
npm install -g n
升级node.js到最新稳定版
n stable
升级node.js到最新版
n latest
升级node.js到制定版本
n v8.9.4
npm install //添加node依赖
npm start //启动
然后进行 Ctrl+D,退出liunx