资料
安装 nodejs
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
yum install -y nodejs
安装版本管理器 n
npm install -g n
# 安装指定版本
n <version>
# 安装最新版本
n latest
# 安装稳定版本
n stable
# 删除某个版本
n rm <version>
# 查看所有版本
n list