반응형
너무 당연하지만, 그래도 혹시나 해서 공유를 해봅니다.
모든 설치는 brew 를 이용하면 됩니다..
설치 안했으면 설치..
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
nodejs 설치는
brew install node
정상설치확인!
node -v
v15.11.0
npx 는 기본으로 설치 되어 있으니, 확인만 해봅니다.
npx -v
7.6.3
개발툴은 vs-code 역시 brew 로 설치
brew install visual-studio-code
# os 버전업 되면서 brew 도 더이상 cask 를 따로 안써줘도 됩니다..
크롬도 설치
brew install google-chrome
설치된 리스트 확인
brew list
이제 react 를 맘껏 개발 해 봅시다.
반응형