💻
[React] 프로젝트 생성
On this page
❐ React 프로젝트 생성
아래 명령어를 실행하여 React 프로젝트를 생성합니다.
bash# yarn create react-app [프로젝트명]yarn create react-app reactstudy
❐ React 실행
생성한 프로젝트 폴더 안에서 아래 명령어를 실행하여 Web을 실행합니다.
bash# cd [생성한 프로젝트명]cd reactstudyyarn start
아래와 같이 http://localhost:3000 URL로 Web이 실행되는 것을 확인할 수 있습니다.