安装篇-nodejs 12.x 安装
1、安装
yum clean all && yum makecache fast
yum install -y gcc-c++ make
curl -sL https://rpm.nodesource.com/setup_12.x | sudo -E bash -
yum install nodejs -y
2、配置
-
- 命令
npm config set registry https://registry.npm.taobao.org
-
- 验证命令
npm config get registry
如果返回https://registry.npm.taobao.org,说明镜像配置成功。
3、cnpm安装
-
- 安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
-
- 使用cnpm
cnpm install xxx