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

hl0406 2024-06-22 09:03:03 阅读 76

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



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。