码迷,mamicode.com
首页 > 其他好文 > 详细

yarn vs npm

时间:2020-01-16 21:55:47      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:mis   配置   scl   add   生成   read   miss   目录   写入   

yarn is similar to npm.

how to install yarn:

npm install yarn -g or choco install yarn

 

npm vs yarn:

yarnnpm说明
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

标签:mis   配置   scl   add   生成   read   miss   目录   写入   

原文地址:https://www.cnblogs.com/connie313/p/12203172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!