美文网首页
npm/yarn切换镜像源

npm/yarn切换镜像源

作者: Young_Jeff | 来源:发表于2021-07-13 09:38 被阅读0次
  • npm
//查询当前镜像
npm get registry 
// 设置为淘宝镜像
npm config set registry https://registry.npm.taobao.org/
//设置为官方镜像
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.yarnpkg.com

相关文章

网友评论

      本文标题:npm/yarn切换镜像源

      本文链接:https://www.haomeiwen.com/subject/ohmjpltx.html