NPM 和 Yarn 使用国内淘宝镜像源提升各依赖安装速度

Posted 开发者精选资讯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NPM 和 Yarn 使用国内淘宝镜像源提升各依赖安装速度相关的知识,希望对你有一定的参考价值。


首先查看自己是否安装 NPM,如果没有安装 NPM,请查看 下载并安装.NET Core SDK[1]

因受国内的环境影响,导致了很多速度起不来,所以需要安装国内镜像。

配置 NPM 的淘宝镜像源加速

打开poweshellcmd工具,输入以下命令:

npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist
npm config set electron_mirror https://npm.taobao.org/mirrors/electron/
npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
npm config set phantomjs_cdnurl https://npm.taobao.org/mirrors/phantomjs/

然后输入命令

npm get registry

得到返回结果为https://registry.npm.taobao.org/ 说明注册成功。

1

windows 下 Yarn 安装与使用

如果你还没有安装 Yarn,通过访问https://classic.yarnpkg.com/latest.msi,下载安装包。双击安装后,输入命令

yarn -v

返回版本号1.22.4即表示成功。

Yarn 注册淘宝镜像源加速

打开poweshellcmd工具,输入以下命令:

yarn config set registry https://registry.npm.taobao.org -g
yarn config set disturl https://npm.taobao.org/dist -g
yarn config set electron_mirror https://npm.taobao.org/mirrors/electron/ -g
yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/ -g
yarn config set phantomjs_cdnurl https://npm.taobao.org/mirrors/phantomjs/ -g
yarn config set chromedriver_cdnurl https://cdn.npm.taobao.org/dist/chromedriver -g
yarn config set operadriver_cdnurl https://cdn.npm.taobao.org/dist/operadriver -g
yarn config set fse_binary_host_mirror https://npm.taobao.org/mirrors/fsevents -g
yarn config get registry
NPM 和 Yarn 使用国内淘宝镜像源提升各依赖安装速度
1

表示配置成功,这样可以解决我们的绝大部分网络环境速度慢的问题。

深入浅出 ASP.NET Core 与 Docker 入门课程

参考资料

[1]

下载并安装.NET Core SDK: https://www.yoyomooc.com/yoyomooc/howto-download-install-net-core-sdk


推荐阅读:


文章来自互联网,原文链接: 

https://www.yoyomooc.com/yoyomooc/npm-yarn-registry-taobao-mirror

开发者精选资讯
每日为您推荐开发精选资讯

长按二维码 关注「开发者精选资讯」公众号


好文章,我在看❤️


以上是关于NPM 和 Yarn 使用国内淘宝镜像源提升各依赖安装速度的主要内容,如果未能解决你的问题,请参考以下文章

Yarn 和 NPM 国内快速镜像(淘宝镜像)

Yarn 国内加速,修改镜像源

npm配置国内镜像资源+淘宝镜像

查看npm和yarn 的镜像源和配置淘宝镜像源

查看npm和yarn 的镜像源和配置淘宝镜像源

npm和yarn更改为淘宝镜像