====== yarn ======
* https://yarnpkg.com
* [[:node.js|node.js]] package manager
* see [[node.js:npm|node.js npm]]
===== Install =====
==== Ubuntu Linux ====
sudo apt install yarnpkg
* 실행파일명도 ''yarnpkg''이다. [[linux:alias|Linux Alias]]를 걸어주는게 낫다.
alias yarn="yarnpkg"
==== homebrew ====
* [[:homebrew|HomeBrew]]
brew install yarn
==== npm ====
sudo npm install -g yarn
===== workspaces =====
* Java 의 Project/Multi Module 개념 구현.
* [[https://classic.yarnpkg.com/lang/en/docs/workspaces/|Workspaces | Yarn]]
* [[https://classic.yarnpkg.com/blog/2017/08/02/introducing-workspaces/|Workspaces in Yarn | Yarn Blog]]
* [[https://musma.github.io/2019/04/02/yarn-workspaces.html|[Node] yarn workspaces (프로젝트 참조)]]