본문 바로가기
Application/Javascript 패밀리 (React, next.js ..)

Next.js 초간단 시작하기 (프로젝트 생성하고 띄어보기)

by 노반장 2023. 5. 27.

1. 사전준비

Node.js 설치

 

2.Next.js 프로젝트 시작하기

#npx 사용
npx create-next-app@latest

#app을 사용할 경우
npx create-next-app@latest --experimental-app

#ts를 사용할 경우
npx create-next-app@latest --typescript

#yarn 사용
yarn create next-app

 

3.프로젝트 기동 시키기

#dev 환경 기동
npm run dev

4.브라우저에서 접속해보기

http://localhost:3000

 

댓글