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

admin
admin
2021-06-03
分享:

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

目录导航:ASP.NET Core与Docker三剑客实战 入门课程说明

我们需要更改镜像源的地址是考虑到各个地方的网络环境复杂,尤其是在中国。 因此我们采用国内的镜像源地址进行处理。

首先查看自己是否安装NPM,如果没有安装NPM,请查看 安装环境依赖

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

配置NPM的淘宝镜像源加速

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

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

然后输入命令

npm get registry

得到返回结果为https://registry.npmmirror.com/ 说明注册成功。

1639901242689.png

windows下Yarn安装与使用

如果你还没有安装Yarn,通过访问https://github.com/yarnpkg/yarn/releases/download/v1.22.4/yarn-1.22.4.msi,下载安装包。

或者访问:https://host.52abp.com/SysFiles/2021-12-19/yarn-1.22.4.msi

双击安装后,输入命令

yarn -v

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

Yarn注册淘宝镜像源加速

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

yarn config set registry https://registry.npmmirror.com -g
yarn config set disturl https://npmmirror.com/dist -g
yarn config set electron_mirror https://npmmirror.com/mirrors/electron/ -g
yarn config set sass_binary_site https://npmmirror.com/mirrors/node-sass/ -g
yarn config set phantomjs_cdnurl https://npmmirror.com/mirrors/phantomjs/ -g
yarn config set chromedriver_cdnurl https://cdn.npmmirror.com/dist/chromedriver -g
yarn config set operadriver_cdnurl https://cdn.npmmirror.com/dist/operadriver -g
yarn config set fse_binary_host_mirror https://npmmirror.com/mirrors/fsevents -g

然后输入命令,查看当前地址源:

yarn config get registry

1639901631559.png

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

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