Yarn 和 NPM 国内快速镜像(淘宝镜像)
Posted alexanderzhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yarn 和 NPM 国内快速镜像(淘宝镜像)相关的知识,希望对你有一定的参考价值。
Yarn 和 NPM 国内快速镜像(淘宝镜像)
如果在前端开发使用 NPM 或者 YARN 下载过程中碰到网速非常慢,可以配置国内 淘宝镜像 来提升下载速度。具体方法如下:
NPM
查询当前镜像
npm get registry
设置为淘宝镜像
npm config set registry https://registry.npm.taobao.org/
设置为官方镜像
npm config set registry https://registry.npmjs.org/
YARN
查询当前镜像
yarn config get registry
设置为淘宝镜像
yarn config set registry https://registry.npm.taobao.org/
设置为官方镜像
yarn config set registry https://registry.yarnpkg.com
以上是关于Yarn 和 NPM 国内快速镜像(淘宝镜像)的主要内容,如果未能解决你的问题,请参考以下文章