安装node.js
安装yarn
npm install -g yarn
查看yarn和npm源
yarn config get registry,默认是 https://registry.yarnpkg.com
npm config get registry,默认是https://registry.npmjs.org/
更改npm和yarn为阿里巴巴的淘宝源
yarn config set registry ‘https://registry.npm.taobao.org‘
npm config set registry ‘https://registry.npm.taobao.org‘