npm config set registry https://registry.npmmirror.com切换cnpm镜像:npm install -g cnpm --registry=https://registry.npmm
时间: 2024-07-19 14:01:26 浏览: 242
npm国内镜像 安装失败的几种解决方案
要切换到CNPM镜像并设置默认注册表,你可以使用npm命令行工具执行以下操作:
1. 设置全局注册库为国内镜像[^4]:
```shell
npm config set registry https://registry.npmmirror.com
```
2. 安装cnpm作为全局包,指定使用新的注册表[^4]:
```shell
npm install -g cnpm --registry=https://registry.npmmirror.com
```
现在,当你使用`cnpm`命令安装依赖时,它会从配置的CNPM镜像服务器下载。
阅读全文