Service
기능
클래스, 변수, 함수 기능 구현
생성
$ nest g s [이름]
Shell
복사
구조
•
기본 구조
•
spec파일은 test파일이므로 지워도 무방
•
app.module.ts에 자동 생성
•
movie.setvice.ts
Entity
기능
json형식 db저장소
생성
해당 모듈 폴더에 Entities - entity.ts파일 생성
구조
•
json db
•
movies.entity.ts
export class Movie {
id: number;
title: string;
year: number;
genres: string[];
}
TypeScript
복사