美文网首页
Centos7.0 下 nodejs 的安装和升级

Centos7.0 下 nodejs 的安装和升级

作者: sunxiaochuan | 来源:发表于2018-05-25 16:33 被阅读0次

资料

参考地址

安装 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

相关文章

网友评论

      本文标题:Centos7.0 下 nodejs 的安装和升级

      本文链接:https://www.haomeiwen.com/subject/vorujftx.html