리액트 프로젝트는 create-react-app**(CRA)**라는 이름의 프로그램으로 생성

리액트 프로젝트 생성 명령어 (TypeScript 기반)

npx create-react-app 프로젝트_이름 --template typescript

또는

yarn create react-app 프로젝트_이름 --template typescript

의존성 모듈 설치

npm install

또는

yarn install

패키지 설치

npm install 패키지_이름

또는

yarn add 패키지_이름
yarn add 패키지_이름@1.2.0

앱 실행 명령어

npm start

또는

yarn start