npm | Yarn | 备注 |
---|---|---|
npm install | yarn | 下载package.json中的包 |
npm config set registry XXX | yarn config set registry XXX | 设置镜像 |
npm install XXX --save | yarn add XXX | 安装指定的包 |
npm uninstall XXX --save | yarn remove XXX | 移除指定的包 |
npm install XXX --save-dev | yarn add XXX --dev | 安装指定的包,并写入package.json中的dev依赖 |
npm与Yarn命令对比
最新推荐文章于 2024-06-21 12:18:43 发布