[요약]
더보기
1. Homebrew 설치
brew version
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew update
brew doctor
export PATH="/usr/local/bin:~/.zshrc"
2. node, npm 설치
node -v
npm -v
brew install node
brew install npm
3.yarn 설치
npm install -g yarn
npm, node가 설치되어있는지 확인 한다.
npm -v
node -v
Mac에서는 Homebrew라는 유용한 패키지 매니저가 있다.
먼저 설치해보자
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Hombrew 설치가 완료되었다면,
brew update
brew doctor
export PATH="/usr/local/bin:~/.zshrc"
brew install node
brew install npm
* Tip: 만약 node 버전을 바꾸고 싶다면, 현재 14 -> 12
1. 노드 설치 가능 옵션 조회
brew search node
2. 현재 버전에서 연결 해제 / 새로운버전 설치 / 연결
brew unlink node
brew install node@12
brew link node@12
정상적으로 다 설치되었는지 확인해보자
node -v
npm -v
npm보다는 빠른 패키지매니저로 Yarn을 주로 사용한다.
1. Yarn 설치
npm install -g yarn
2. 최신버전 업데이트 (이미 설치되어있다면)
yarn set version latest
3. 유용한 명령어
//도움말
yarn help
//새 프로젝트 생성(package.json)
yarn init
//모든 dependencies 설치
yarn
yarn install
//dependency 추가
yarn add [package]
yarn add [package]@[version]
yarn add [package]@[tag]
//카테고리를 지정해서 dependency 추가
yarn add [package] --dev # dev dependencies
yarn add [package] --peer # peer dependencies
//dependency 업그레이드
yarn up [package]
yarn up [package]@[version]
yarn up [package]@[tag]
//dependency 삭제
yarn remove [package]
//업그레이드하기
yarn set version latest
yarn set version from sources
'Tips' 카테고리의 다른 글
Mac에 Slack 메신저 설치, Workspace 생성하기 (0) | 2020.07.25 |
---|---|
Insomnia. API 테스트 도구 사용하기 (1) | 2020.07.16 |
iterm2 + oh my zsh로 터미널을 이쁘게 꾸며보자 (1) | 2020.07.14 |
VS Code 추천 Extensions (for. React개발자 ) (2) | 2020.07.12 |
댓글