yarn설치하기
npm install -g yarn
yarn설치 확인하기
yarn -v
yarn으로 패키지 설치하는 법
yarn add [설치할 패키지 이름]
npm(Node Package Manager)이란?
무수히 많은 third-party 패키지들이 모여있는 집합소, 개발자는 npm에서 여러 패키지를 다운받아 활용할 수 있다.
공통점
차이점
명령어
명령어 | npm | yarn |
---|---|---|
dependencies 설치 | npm install | yarn |
패키지 설치 | npm install [패키지명] | yarn add [패키지명] |
dev 패키지 설치 | npm install --save-dev [패키지명] | yarn add --dev [패키지명] |
글로벌 패키지 설치 | npm install --global [패키지명] | yarn global add [패키지명] |
패키지 제거 | npm uninstall [패키지명] | yarn remove [패키지명] |
dev 패키지 제거 | npm uninstall --save-dev [패키지명] | yarn remove [패키지명] |
글로벌 패키지 제거 | npm uninstall --global [패키지명] | yarn global remove [패키지명] |
업데이트 | npm update | yarn upgrade |
패키지 업데이트 | npm update [패키지명] | yarn upgrade [패키지명] |
런타임이란?
프로그래밍 언어가 구동(running)되는 환경(environment)을 말한다.