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

作者 : admin 本文共424个字,预计阅读时间需要2分钟 发布时间: 2024-03-13 共5人阅读

NPM

查询当前镜像

npm get registry 

 设置为淘宝镜像

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

 设置为官方镜像

npm config set registry http://registry.npmjs.org/

 YARN

查询当前镜像

yarn config get registry

 设置为淘宝镜像

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

 设置为官方镜像

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

本站无任何商业行为
个人在线分享 » 前端npm和yarn更换国内淘宝镜像
E-->