yarn vs npm
Posted connie313
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yarn vs npm相关的知识,希望对你有一定的参考价值。
yarn is similar to npm.
how to install yarn:
npm install yarn -g or choco install yarn
npm vs yarn:
yarn | npm | 说明 |
---|---|---|
yarn init | npm init | 初始化项目,生成package.json文件 |
yarn add 模块名 | npm install 模块名 --save | 在本目录下添加项目的依赖包,并在package.json下写入配置 |
yarn global add 模块名 | npm install 模块名 -g | 在全局下添加项目的依赖包 |
yarn add 模块名 --dev | npm install 模块名 --save-dev | 在本目录下添加某个开发时依赖包 |
yarn remove 模块名 | npm uninstall 模块名 | 移除本目录下指定的项目依赖包 |
yarn upgrade 模块名 | npm update 模块名 --save | 更新本目录下指定的项目依赖包 |
yarn add is synchonise while npm install is asynchonise(one by one). so yarn is faster.
yarn can read package from cache.so it can download packages offline.
yarn can lock version.
list license permission: yarn licenses generate-disclaimer /// yarn licenses ls
yarn why
以上是关于yarn vs npm的主要内容,如果未能解决你的问题,请参考以下文章