window의 경우 node.js 공식 웹사이트에서 node.js를 다운로드합니다.
이때 npm 역시 함께 설치됩니다.
macOS의 경우 homebrew가 설치되어 있지 않다면 homebrew를 설치합니다.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
homebrew를 이용해 Node.js를 설치합니다.
brew install node
Ubuntu의 경우, 다음을 통해 Node와 npm을 설치합니다.
sudo apt update
sudo apt install nodejs npm
윈도우와 mac에서 Node.js 및 npm이 잘 설치되었는지 확인합니다.
node -v
npm -v
Node.js와 npm을 설치했다면 다음 커맨드를 실행하여 React를 설치합니다.
npm i
React 실행:
npm start