Create React App으로 React 설치
Create React App으로 React 설치
Create React App으로 React 설치
- React로 SPA를 만들기 위해 사용하는 도구
- Node >= 6 이상 필요하며, npm 및 npx를 사용하는 방법을 통해 설치
- npm 사용
npm install -g create-react-app
create-react-app my-app
cd my-app
npm start
- npx 사용
npx create-react-app my-app
cd my-app
npm start
References
- https://reactjs-kr.firebaseapp.com/docs/installation.html#creating-a-new-application
- https://github.com/facebookincubator/create-react-app#create-react-app-