Recent Posts
Recent Comments
게으른개발너D
Creating a Project (ver. 13) 본문

1. Creating a Project
NextJS 프로젝트를 생성해보자
cd Documents
npx create-next-app@latest --typescript
타입스크립트를 쓰려면 뒤에 --typescript를 쓰면 된다.

터미널에 위의 명령어를 입려하면 프로젝트명이 뭐냐고 물어볼 것이다
나는 nextjs-intro라고 이름 지어주었다.
설치가 다 되었으면 code nextjs-intro를 입력하여 vscode를 열어본다.
npm run dev를 입력해서 실행시켜보자.
http://localhost:3000에 직접 들어가서 문제없이 잘 동작하고 있는지 확인해 보자.

프로젝트는 위와 같은 디폴트 페이지를 가지고 있다.
'개발 > NextJS' 카테고리의 다른 글
Practice Project 2 - Server Side Rendering (0) | 2023.11.30 |
---|---|
Practice Project 1 - Patterns and Redirect, Rewrite (1) | 2023.11.28 |
Framework Overview 3 - Styles and Custom App (1) | 2023.11.23 |
Framework Overview 2 - Static Pre Rendering and Routing (1) | 2023.11.23 |
Framework Overview 1 - Framework and Pages (0) | 2023.04.25 |
Comments