NestJS開発環境の構築
6987 ワード
基本環境の構築
$ npm i -g @nestjs/cli
$ nest new [name]
# swagger 설치
$ npm install --save @nestjs/swagger swagger-ui-express
# nestjs(fastify)를 사용하는 사람이라면
$ npm install --save @nestjs/swagger swagger-fastify-swagger
import { NestFactory } from '@nestjs/core';
import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
// api 문서이름, 부가설명, 버전설정
const config = new DocumentBuilder()
.setTitle('User example')
.setDescription('The user API description')
.setVersion('1.0')
.build();
// 도메인/swagger로 api문서 접근 가능
const document = SwaggerModule.createDocument(app, config);
SwaggerModule.setup('api-doc', app, document);
await app.listen(3000);
}
bootstrap();
サーバーの実行
$ npm run start:dev
装飾の追加
import { IsString, IsNumber } from "class-validator";
import { ApiProperty } from "@nestjs/swagger";
export class CreateUserDto {
@ApiProperty({ description: "이름" }) // api문서에 부가설명 추가
@IsString()
name: string;
@ApiProperty({ description: "나이" })
@IsNumber()
age: number;
}
Reference
この問題について(NestJS開発環境の構築), 我々は、より多くの情報をここで見つけました https://velog.io/@dev_shu/NestJS-개발환경-구축テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol