yarn的命令安装

yarn
Yarn是由Facebook、Google、Exponent 和 Tilde 联合推出了一个新的 js 包管理工具 ,正如官方文档中写的,Yarn 是为了弥补 npm 的安装速度慢,安装包的版本不一致的缺陷而出现的。

安装yarn
可以使用npm命令来全局安装yarn

npm i yarn -g
yarn常用命令
以下列出了Yarn和npm的区别,可以对比学习:

NPM YARN 说明
npm init yarn init初始化某个项目
npm install yarn install 默认的安装依赖操作
npm install taco --save yarn add taco 安装某个依赖,并且默认保存到package.
npm uninstall taco --save yarn remove taco 移除某个依赖项目
npm install taco --save-dev yarn add taco —dev 安装某个开发时依赖项目
npm update taco --save yarn upgrade taco 更新某个依赖项目
npm install taco -g yarn global add taco 安装某个全局依赖项目

你可能感兴趣的:(笔记)