React
react 프로젝트 생성 - nextjs 프레임워크로 프로젝트 생성/실행 with TypeScript
뉴히
2024. 3. 4. 19:14
프로젝트 생성
node 먼저 설치가 되어있어야한다.
// 최신 버전 설치
npx create-next-app@latest 프로젝트명
// start with typescript (tailwind, eslint도 한번에 설치)
npx create-next-app@latest 프로젝트명 --typescript --tailwind --eslint
// yarn
yarn create next-app
yarn create next-app --typescript
프로젝트 실행
cd 해당 프로젝트
npm run dev
http://localhost:3000/에서 초기 화면 확인가능