centos7.7环境安装nodejs8

nodejs的yum安装部署

# nodejs-8.15.1
curl -sL https://rpm.nodesource.com/setup_8.x | bash -
# 默认安装最新版本
安装指定版本

yum install nodejs-8.15.1 -y

[root@eus_influenex_web01:/etc/pki/rpm-gpg]# node --version
v8.15.1
[root@eus_influenex_web01:/etc/pki/rpm-gpg]# npm --version
6.4.1
# 安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 安装pm2
[root@eus_influenex_web01:~]# npm install pm2 -g

猜你喜欢

转载自www.cnblogs.com/reblue520/p/12264147.html
今日推荐