yarn和npm对比
| yarn | npm | 说明 |
|---|---|---|
| yarn | npm install | 安装 |
| yarn add xxx | npm install xxx —save | 安装某个依赖,并保存到package |
| yarn remove xxx | npm uninstall xxx —save | 卸载 |
| yarn add xxx —dev | npm install xxx —save-dev | |
| yarn upgrade | npm update —save | 更新 |
| yarn —version | npm -version | 查看版本 |
| yarn init | npm init | 初始化项目 |
| yarn config set registry ‘https://registry.npm.taobao.org‘ | npm install -g cnpm —registry=http://registry.npm.taobao.org | 更换淘宝镜像 |