安装篇-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、配置

    1. 命令
npm config set registry https://registry.npm.taobao.org
    1. 验证命令
npm config get registry

如果返回https://registry.npm.taobao.org,说明镜像配置成功。

3、cnpm安装

    1. 安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
    1. 使用cnpm
cnpm install xxx
posted @ 2021-05-06 11:47  直角漫步  阅读(2794)  评论(0编辑  收藏  举报