npm config set registry https://npm.aliyun.com
时间: 2024-06-19 07:02:08 浏览: 280
这是一个用于设置npm镜像源的命令,镜像源可以让npm包的下载更快,更稳定。命令如下:
```shell
npm config set registry https://npm.aliyun.com
```
这个命令将npm的registry镜像源设置为阿里云的npm镜像。如果你想将镜像源设置回默认源,可以输入以下命令:
```shell
npm config set registry https://registry.npmjs.org/
```
相关问题
npm install -g cnpm --registry=https://registry.npm.taobao.org 换为最新地址
`npm install -g cnpm --registry=https://registry.npm.taobao.org` 这条命令是用来全局安装淘宝镜像下的cnpm(淘宝npm注册表的客户端)。如果需要更换到最新的npm镜像地址,首先确认新的镜像源,例如阿里云的npm仓库地址可能会有所变化。当前阿里云的npm镜像推荐地址是 `https://mirrors.aliyun.com/npm/`。
更新后的命令可能是这样的:
```bash
npm install -g cnpm --registry=https://mirrors.aliyun.com/npm/
```
请注意,官方npm的主站仍然是 `https://registry.npmjs.org/`,但在网络不稳定或者速度慢的时候,国内用户通常会倾向于使用镜像加速下载。
npm registry 大全
以下是一些常用的 npm registry 大全:
1. npm 官方 registry:https://registry.npmjs.org/
2. cnpm registry(淘宝镜像):https://registry.npm.taobao.org/
3. npm 韩国 registry:https://npm.pkg.github.com/
4. npm 澳大利亚 registry:https://npm.au.razerzone.com/
5. npm 欧洲 registry:https://registry.npmjs.eu/
6. npm 阿里云 registry:https://registry.aliyun.com/
7. npm 腾讯云 registry:https://mirrors.tencent.com/npm/
8. npm 中国科技大学 registry:https://mirrors.ustc.edu.cn/npm/
9. npm 华中理工大学 registry:https://mirrors.hust.edu.cn/npm/
10. npm 华南理工大学 registry:https://mirrors.scau.edu.cn/npm/
11. npm 深度操作系统 registry:https://npm.sz.deepin.com/
12. npm 华为云 registry:https://mirrors.huaweicloud.com/repository/npm/
13. npm 好雨云帮 registry:https://npm.rainbond.com/
14. npm 内网 registry:http://registry.npm.corp.qunar.com/
15. npm 七牛云 registry:https://npm.qiniu.com/
16. npm 豆瓣 registry:https://registry.douban.com/
17. npm jsDelivr registry:https://data.jsdelivr.com/npm/
18. npm JFrog Artifactory registry:https://npm.jfrog.org/
19. npm GitLab registry:https://gitlab.com/api/v4/projects/14696202/packages/npm/
20. npm 阿里巴巴 registry:https://registry.npm.alibaba-inc.com/
注意:使用这些 registry 时,请确认该 registry 可以访问。
阅读全文