nvm Node版本管理工具

安装

# 下载脚本安装
curl https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh -o nvm_install.sh
bash nvm_install.sh
# 载入nvm环境
source ~/.bashrc

nvm_install

使用

常用命令

在supervisor中使用

[program:my_app]
user=root
directory=/data/www/my_app
; 先载入nvm,指定node版本,再启动
command=bash -c "source ~/.nvm/nvm.sh && nvm use 16.16.0 && npm run start"
priority=1
numprocs=1
autostart=true
autorestart=true
startsecs=10

参考