本文介绍: 在前端开发时候使用国外镜像速度很慢并且容易下载失败,有时候需要尝试多次才有可能下载成功,很麻烦,因此可以切换国内镜像源,下面为常用的npm,yarn,pnpm切换国内镜像源(以淘宝为例)的方式。上面那种设置全局的,以后每次都会自动读取已经设置好的源,如果只是一次使用可以使用下面的命令。### 三、Yarn 切换镜像源。### 三、pnpm 切换镜像源。### 二、NPM切换镜像源。1. 查看当前镜像源。2. 设置为淘宝镜像源。2. 设置为淘宝镜像源。1. 查看当前镜像源。

 一、说明
前端开发时候使用国外的镜像源速度很慢并且容易下载失败,有时候需要尝试多次才有可能下载成功,很麻烦,因此可以切换为国内镜像源,下面为常用的npm,yarn,pnpm切换国内镜像源(以淘宝为例)的方式

 二、NPM切换镜像源
1. 查看当前的镜像源。
“`
npm config get registry
“`

2. 设置为淘宝
“`
npm config set registry https://registry.npm.taobao.org
“`

3. 还原默认
“`
npm config set registry https://registry.npmjs.org/
“`

4. 临时使用
上面那种设置是全局的,以后每次都会自动读取已经设置好的源,如果只是一次性使用,可以使用下面的命令
“`
npmregistry https://registry.npm.taobao.org install XXX(模块名)
“`

4.使用cnpm
cnpm一个命令,用它来代替npm
“`
npm install -g cnpmregistry=https://registry.npm.taobao.org
cnpm install XXX(模块名)
“`

5.使用nrm
“`
npm install -g nrm
nrm use taobao
nrm ls  # 查看当前可用源命令
“`

### 三、Yarn 切换镜像源
1. 查看当前镜像源
“`
yarn config get registry
“`
2. 设置为淘宝镜像源
“`
yarn config set registry https://registry.npmmirror.com
“`
3. 切回原镜像源
“`
yarn config set registry https://registry.yarnpkg.com
“`
### 三、pnpm 切换镜像源

1. 查看当前镜像源
“`
pnpm config get registry
“`

2. 设置为淘宝镜像源
“`
pnpm config set registry https://registry.npmmirror.com
“`

3. 切回原镜像源
“`
pnpm config set registry https://registry.npmjs.org
“`

原文地址:https://blog.csdn.net/u012970287/article/details/131100890

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_36692.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注