Skip to content

Install React

1. Nodejs 설치하기

Nodejs 설치방법

2. Visual Studio Code 설치하기

VScode 설치방법

3. React 프로젝트 생성하기

터미널에 다음 명령어를 입력한다.

npx create-react-app <만들고자 하는 프로젝트명>

만약 TypeScript를 사용한다면 다음 명령어를 입력한다.

npx create-react-app <만들고자 하는 프로젝트명> --template typescript