일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- JavaScript
- 자바
- vanillaJS
- 디자인 패턴
- Java
- 장고
- 리액트 훅
- design pattern
- 프로그래밍 언어론
- 자바스크립트
- react firebase
- websocket
- 코틀린
- 프로그래머스 완전탐색
- codesandbox
- react hook
- 프로그래머스 자바
- NextJS
- React JS
- 프로그래머스
- 컴퓨터 네트워크
- 데이터모델링과마이닝
- 코딩테스트 고득점 Kit 완전탐색
- 백준
- 자바 공부
- useState
- 코딩테스트 고득점 Kit
- 리액트
- react
- useEffect
Archives
- Today
- Total
기록하는 개발자
[NextJs] NextJs+Typescript로 프로젝트 시작하기 본문
728x90
1. Node 설치
- Node 설치가 되어있지 않은 경우 Node 부터 설치
- 이미 Node가 설치되어 있는 경우 2번부터 수행
// node version 확인
node -v
[ Mac OS ]
- 1) homebrew설치(없는경우)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- 2) node 설치
brew install node
[ Window ]
- 1) Chocolatey 설치(없는경우)
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- 2) node 설치
choco install -y nodejs.install
2. create-next-app를 설치
npm install -g create-next-app
3. 버전 확인으로 설치 여부 확인
create-next-app --version
4. 프로젝트 생성
npx create-next-app myapp
yarn create next-app my app
// 최신 버전 설치
npx create-next-app@latest
//start with typescript
npx create-next-app --typescript
yarn create next-app --typescript
//이미 프로젝트를 생성한 후 typescript를 따로 추가하는 경우
npm install --save-dev typescript @types/react @types/node
yarn add --dev typescript @types/react @types/node
5. 프로젝트 실행
npm run dev
yarn dev
정상적으로 실행된다면 http://localhost:3000/ 에서 초기화면을 확인할 수 있다.
728x90
'Web > NextJs' 카테고리의 다른 글
[NextJs] NextJs에 TailwindCss 적용 하기 (1) | 2023.05.11 |
---|---|
[NextJs] NextJs에 Swiper 적용하기 (1) | 2023.05.11 |
[NextJs] getStaticProps와 getServerSideProps (0) | 2023.05.09 |
[NextJs] next.config.js 의 redirects와 rewrites (0) | 2023.05.09 |
[NextJs] Routing과 navigation (0) | 2023.05.09 |