npm 安装及换源

文章目录

安装 node

  1. 更新源
curl --silent --location https://rpm.nodesource.com/setup_10.x | sudo bash -
  1. 安装 node
sudo yum -y install nodejs

注意

  1. 如果以上步骤不能安装 最新版 node,执行以下命令后再执行第二步:

    sudo yum clean all
  2. 如果存在多个 nodesoucre,执行以下命令删除,然后重新执行第一第二步:

    sudo rm -fv /etc/yum.repos.d/nodesource*

换源

通过 config 命令

npm config set registry https://registry.npm.taobao.org npm info underscore

(如果上面配置正确这个命令会有字符串 response)

命令行指定

npm --registry https://registry.npm.taobao.org info underscore

编辑 ~/.npmrc加入下面内容

registry = https://registry.npm.taobao.org

使用 nrm 管理 registry 地址

  1. 下载 nrm

    npm install -g nrm
  2. 添加 registry 地址

    nrm add npm http://registry.npmjs.org
    nrm add taobao https://registry.npm.taobao.org
  3. 切换 npm registry 地址

    nrm use taobao
    nrm use npm

参考链接

CentOS yum 安装 node.js

设置 npm 的 registry - 简书