yarn源改为国内镜像

查看当前镜像 yarn config get registry 改为国内 #项目内 yarn save 软件名 --registry https://registry.npm.taobao.org/ #全局 yarn config set registry https://registry.npm.taobao.org/ 使用 yrm 管理 #安装 npm install -g yrm #列出镜像 yrm ls #使用淘宝镜像 yrm use taobao #测试访问速度 yrm test taobao

2019-12-17

homebrew 更换国内源

homebrew默认官方源托管在github上,国内访问奇慢无比,可更换成中科大或者清华大学的镜像 中国科大替换命令 # 中国科大: # 替换brew.git: $ cd "$(brew --repo)" $ git remote set-url origin https://mirrors.ustc.edu.cn/brew.git # 替换homebrew-core.git: $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" $ git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git # 替换homebrew-bottles: $ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile $ source ~/.bash_profile # 应用生效: $ brew update 清华大学替换命令 # 清华大学: # 替换brew.git: $ cd "$(brew --repo)" $ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git # 替换homebrew-core.git: $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" $ git remote set-url origin https://mirrors....

2019-11-25