Frontend/React

CRA 프로젝트 Setting 명령어

전예방 2024. 7. 28. 15:02

Creact React App 로 리액트 프로젝트 시작하기

 

 

Create React App

Set up a modern web app by running one command.

create-react-app.dev

 

📌 설치 명령어

// yarn 사용
yarn create react-app [프로젝트명]

// npx 사용
npx create-react-app [프로젝트명]

// 현재 디렉토리에 설치
npx create-react-app .

 

⭐️ 타입스크립트 사용시

yarn create-react-app [프로젝트명] --template typescript

npx create-react-app [프로젝트명] --template typescript

'Frontend/React'의 다른글

  • 현재글 CRA 프로젝트 Setting 명령어

관련글