Published on

CRA를 이용한 간단한 리엑트 프로젝트 생성

CRA(Create React App)을 이용한 간단한 리액트 프로젝트 생성에 대해서 알아보겠습니다.

npm 설치

bash
sudo apt install npm

nvm 설치

node 버전 관리를 위한 nvm 설치

bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash

or

bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash

nvm node latest설치

bash
nvm node latest설치

CRA 설치 & 생성

bash
# 설치
npm install -g create-react-app
# 생성
create-react-app projectname
# 실행
cd projectname
npm start

실행하시면 아래 그림과 같이 3000번 포트로 리액트 앱이 실행됩니다.

react-start

더 자세한 내용은 공식문서를 참조 하시거나 React 깃허브에서 더 알아보실 수 있습니다.