centos7.7环境安装nodejs8
Posted reblue520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于centos7.7环境安装nodejs8的主要内容,如果未能解决你的问题,请参考以下文章