Nestjs

Getting Started

KimJye 2019. 11. 5. 10:35

목표

기본 CRUD


언어

TypeScript와 JavaScript 호환.

VanilaJavaScript를 사용하려면 babel 컴파일러 필요.


전제조건

Node.js 버전 8.9.0 이상


기본 파일 구조

src
    - app.controller.ts
    - app.module.ts
    - main.ts

파일 설명

파일명 설명
app.controller.ts 단일 경로의 기본 컨트롤러 샘플.
app.module.ts 응용 프로그램의 루트 모듈
main.ts 핵심 기능 NestFactory을 사용하여 Nest 애플리케이션 인스턴스를 작성하는 애플리케이션의 엔트리 파일.

실행

$ npm run start