TIL(Today I Learned)/스파르타 내배캠
[TIL] 23/11/01 React 입문 : Create React App
개발자먼지
2023. 11. 2. 09:43
반응형
한 일
1. standard 반 수업 수준 딱이다. 히히
리액트로 만들지만 내용물은 javascript 복습. 최고!
월화수 강의를 듣고있지만 아직 마음속에 정리가 안되서 TIL을 쓸수가없다.🤣
일단 오늘 강의랑 달라서 당황했던 React 프로젝트 생성 명령어부터 !
[Ceate React App]
https://create-react-app.dev/docs/getting-started
Getting Started | Create React App
Create React App is an officially supported way to create single-page React
create-react-app.dev
[리액트 create 명령어 3가지 : 이 중에 하나만 써준다]
//node js 깔면 기본으로 있음
npx create-react-app my-app
//node js 깔면 기본으로 있음
npm init react-app my-app
// yarn 설치 후 가능
yarn create react-app my-app
[리액트 시작]
npm start
//OR
yarn start
할 일
standard 반 숙제
반응형