NextJS 시작하기

hwisaac·2023년 3월 11일
0

Next.js

목록 보기
4/29

시스템 요구사항

  • Node.js 14.6.0 이상

설치

npx create-next-app@latest
# or
yarn create next-app
# or
pnpm create next-app

타입스크립트 프로젝트로 시작하고 싶을때 --typescript 플래그를 붙입니다:

npx create-next-app@latest --typescript
# or
yarn create next-app --typescript
# or
pnpm create next-app --typescript

설치가 완료된 이후

  • npm run dev or yarn dev or pnpm dev 를 실행하면 개발 서버가 시작됩니다
  • http://localhost:3000 에 접속하면 어플리케이션을 볼수 있습니다.
  • Edit pages/index.js 수정하고 브라우저에 결과가 업데이트 되는지 확인

create-next-app 문서

0개의 댓글