nodejs项目的部署

一、nodejs项目在Windows下的部署

利用工具nssm来把项目安装成Windows服务,然后启动服务
nssm官网地址:http://nssm.cc/

二、nodejs项目在Linux上的部署

利用forever或者pm2来部署

forever    https://github.com/foreverjs/forever
npm install forever -g
pm2    https://github.com/unitech/pm2
npm install pm2 -g

pm2看样子比较不错

你可能感兴趣的:(nodejs项目的部署)