반응형
1. CRA
npx create-react-app 프로젝트명
-> 원래는 npm install -g create-react-app을 한 후 create-react-app을 실행해야하지만,
npx로 바로 모듈을 실행할 수 있다.
2. yarn을 이용한 방법
yarn은 npm install -global yarn으로 설치한다.
yarn create react-app ./
yarn start
3. vite을 이용한 방법
1) NPM 방법
npm 버전 6일 때
npm create vite@latest 프로젝트명 --template react
npm 버전 7이나 그 이상일 때 (-- 가 한 번 더 들어감)
npm create vite@latest 프로젝트명 -- --template react
2) Yarn 방법
yarn create vite 프로젝트명 --template react
끝.
반응형