npm 安装及换源
# 安装 node
- 更新源
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
1如果存在多个 nodesoucre,执行以下命令删除,然后重新执行第一第二步:
sudo rm -fv /etc/yum.repos.d/nodesource*
1
# 换源
# 通过 config 命令
npm config set registry https://registry.npmmirror.com
1
验证
npm info underscore
1
(如果上面配置正确这个命令会有字符串 response)
# 命令行指定
npm --registry https://registry.npmmirror.com info underscore
1
# 编辑 ~/.npmrc
加入下面内容
registry = https://registry.npmmirror.com
1
# 使用 nrm 管理 registry 地址
下载 nrm
npm install -g nrm
1添加 registry 地址
nrm add npm http://registry.npmjs.org nrm add npmmirror https://registry.npmmirror.com
1
2切换 npm registry 地址
nrm use npmmirror nrm use npm
1
2
# 参考链接
编辑 (opens new window)
上次更新: 2024-07-16, 03:23:38