Frontend/React

React 프로젝트 생성

곤프 2021. 3. 31. 16:36

1. React를 시작하기 전에 node.js를 설치해야한다.

(node.js를 설치하면 npm은 같이 설치 됨 url: https://nodejs.org/en/download/)

 

Download | Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

 

2. React 프로젝트 생성을 도와주는 도구 create-react-app를 설치한다.

npm install -g create-react-app

 

3. 작업 디렉터리(여기선 bkmarket)를 생성하고 해당 디렉터리에서 아래 명령어로 react 프로젝트를 생성한다.

create-react-app .

설치가 완료 된 모습

 

4. 프로젝트를 실행한다.

npm start