您的位置:首页 > 运维架构 > Linux

CentOS 7 通过 yum 安装 nodejs 和 npm

2016-05-16 12:56 435 查看
获取nodejs 资源

# 4.x

curl --silent --location https://rpm.nodesource.com/setup_4.x | bash -

# 5.x

curl --silent --location https://rpm.nodesource.com/setup_5.x | bash -

# 0.10

curl --silent --location https://rpm.nodesource.com/setup | bash -

我这里安装的是 v4.x








安装

yum install -y nodejs








测试是否安装成功

node -v

# v4.4.0

npm -v

# 2.14.20



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: