React MacOS에 설치하는 방법
01 Dec 2019 | ReactReact 설치
brew
를 이용해서 설치하는 방법을 포스팅합니다.
brew 설치
$ xcode-select –install $ ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
NodeJS 설치
brew install node
npm 업데이트
만약 npm
버전이 낮은 경우는 아래 명령어를 이용해서 최신 버전으로 업데이트할 수 있습니다.
npm install -g npm
yarn 설치
brew install yarn
create-react-app 설치
npm install -g create-react-app
테스트 프로젝트 생성
create-react-app snowdeerapp
실행
cd snowdeerapp yarn start
그 이후 http://localhost:3000
에 접속해서 확인할 수 있습니다.