yarn
yarn add name -D
yarn add global nrm
yarn remove 卸载包
yarn create xxx yyy 相当于全局安装 xxx 再执行 xxx yyy
设置国内源
yarn config set registry https://registry.npmmirror.com
; 查看源地址信息:yarn config get registry
yarn config set registry https://registry.npm.taobao.org/
- yarn global list --depth=0 查看全局安装的包
yarn config set electron_mirror https://npmmirror.com/mirroes/electron/
yarn 2
- Yarn 并不会拷贝依赖到 node_modules 目录,而是会在 .pnp.js 中记录下该依赖在缓存中的具体位置。这样就避免了大量的 I/O 操作同时项目目录也不会有 node_modules 目录生成
需要忽略
.yarn/cache
.yarn/unplugged
.yarn/install-state.gz