安装node
node程序后端运行
node程序运行的时候,shell关掉程序就停止了。那么怎么后台运行呢
方法1:
nohup node ***.js &
node.js自带服务nohub,不需要安装别的包。
缺点:存在无法查询日志等问题
介绍方法2:
安装forever
npm install -g forever
forever
这里着重介绍方法2
forever start main.js
配置代理
如果 你的nvm install v21.0.0卡主不动弹,说明你需要代理
# 设定环境变量 export NVM_NODEJS_ORG_MIRROR=https://mirrors.tuna.tsinghua.edu.cn/nodejs-release/