0


前端npm和yarn更换国内淘宝镜像

NPM

查询当前镜像

npm get registry

设置为淘宝镜像

npm config set registry https://registry.npm.taobao.org/ (旧地址)
npm config set registry https://registry.npmmirror.com/ (最新地址)

设置为官方镜像

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.npmmirror.com/ (最新地址)

设置为官方镜像

yarn config set registry https://registry.yarnpkg.com

标签: 前端 npm node.js

本文转载自: https://blog.csdn.net/weixin_45869811/article/details/136670348
版权归原作者 hl0406 所有, 如有侵权,请联系我们删除。

“前端npm和yarn更换国内淘宝镜像”的评论:

还没有评论