一、安装 nodejs 环境

1、安装基本工具

[root@localhost ~]# yum install -y wget

2、下载 nodejs 安装文件

[root@localhost opt]# wget https://npm.taobao.org/mirrors/node/v15.0.0/node-v15.0.0-linux-x64.tar.gz

3、解压缩

[root@localhost opt]# tar zxvf node-v15.0.0-linux-x64.tar.gz

4、查看目录

[root@localhost node-v15.0.0-linux-x64]# ll

记一次  Centos7.x   nrm 安装与配置_经验分享

5、修改环境变量并使之生效

[root@localhost ~]# vim /etc/profile

#set for nodejs
export NODE_HOME="/opt/node-v15.0.0-linux-x64"
export PATH=$NODE_HOME/bin:$PATH

[root@localhost ~]# source /etc/profile

6、查看 node 版本

[root@localhost ~]# node -v

v15.0.0

二、安装 nrm 

1、安装 nrm 

[root@localhost ~]# npm install -g nrm

记一次  Centos7.x   nrm 安装与配置_node.js_02

2、查看可选的源

[root@localhost ~]# nrm ls      

记一次  Centos7.x   nrm 安装与配置_经验分享_03

3、切换源

例如:要切换到taobao源,执行命令nrm use taobao。

[root@localhost ~]# nrm use taobao

记一次  Centos7.x   nrm 安装与配置_centos_04

4、增加源

nrm add <registry> <url>,其中reigstry为源名,url为源的路径

[root@localhost ~]# nrm add registry http://registry.npm.frp.trmap.cn/

5、删除源

[root@localhost ~]# nrm del <registry>删除对应的源

6、测试源速度

[root@localhost ~]# nrm test npm       

记一次  Centos7.x   nrm 安装与配置_linux_05

 

Centos7.x   nrm 安装与配置基本操作完毕!