友情提示

1
注意:淘宝镜像源切换地址,旧地址提供服务到2022 年 05 月 31 日,官方不再进行维护,但仍然可以使用

NPM

查询当前镜像

1
npm get registry 

设置为淘宝镜像

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

设置为官方镜像

1
npm config set registry https://registry.npmjs.org/

YARN

查询当前镜像

1
yarn config get registry

设置为淘宝镜像

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

设置为官方镜像

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