Search

Service & Entity

대분류
프레임워크
소분류
Nest.js
설명
service, entity 기능, 생성, 구조
유형
구조
주요 레퍼런스
https://docs.nestjs.com/providers#services
최종 편집 일시
2024/10/31 03:30
생성 일시
2024/01/16 01:38
13 more properties

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
복사