目录
一、npm设置和切换源
1、查看当前源
2、设置淘宝源淘宝镜像
3、设置官方镜像
4、使用淘宝的cnpm
二、yarn设置和切换源
1、 查看当前源
2、修改yarn源为taobao源
3、修改yarn源为官方源
一、npm设置和切换源
默认第一次安装后是官方镜像。有时候下载慢,我们切淘宝源。有时候有需要切回去。特此记录。文章来源:https://www.toymoban.com/news/detail-469305.html
1、查看当前源
npm config get registry
2、设置淘宝源淘宝镜像
npm config set registry https://registry.npm.taobao.org
3、设置官方镜像
npm config set registry http://registry.npmjs.org
4、使用淘宝的cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
二、yarn设置和切换源
1、 查看当前源
yarn config get registry
2、修改yarn源为taobao源
yarn config set registry https://registry.npm.taobao.org/
3、修改yarn源为官方源
yarn config set registry https://registry.yarnpkg.com
文章来源地址https://www.toymoban.com/news/detail-469305.html
到了这里,关于npm和yarn设置淘宝源,与切换官方源的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!