安装命令
1.安装 nodejs 会自动安装好 npm
2.安装 cnpm 淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
3.安装yarn
npm install -g yarn
4.设置yarn的淘宝镜像
yarn config set registry https://registry.npm.taobao.org
基本命令对比
npm | yarn |
npm install | yarn |
npm install react --save | yarn add react |
npm uninstall react --save | yarn remove react |
npm install react --save-dev | yarn add react --dev |
npm update --save | yarn upgrade |