«   2024/09   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Archives
Today
Total
Recent Posts
Recent Comments
관리 메뉴

뉴히의 개발 로그

react 프로젝트 생성 - nextjs 프레임워크로 프로젝트 생성/실행 with TypeScript 본문

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/에서 초기 화면 확인가능