centos 安装nodejs ,部署项目

安装nodejs
sudo yum update -y
sudo yum install -y nodejs npm 
启动nodejs项目
forever 管理
npm install -g forever

forever start app.js   //启动

forever stop app.js   //关闭
nohup
//启动
nohup node index.js > myLog.log 2>&1 &     

//关闭
pkill node 

你可能感兴趣的:(linux,centos,npm,node.js)