Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
nestjs-swagger-koa
Advanced tools
This library is a NestJS module for generating Swagger documentation for Koa applications. Was created due this issue in the official NestJS Swagger module. Also, this library is based on the official NestJS Swagger module and NestJS Koa adapter.
$ npm install --save nestjs-swagger-koa @nestjs/swagger nest-koa-adapter
$ yarn add nestjs-swagger-koa @nestjs/swagger nest-koa-adapter
$ pnpm add nestjs-swagger-koa @nestjs/swagger nest-koa-adapter
Usage was not changed from the official NestJS Swagger module. You can find the usage in the official
documentation here.
All you need to do is to replace the @nestjs/swagger
module with nestjs-swagger-koa
and import the NestKoaAdapter
from nest-koa-adapter
. Here is an example:
import { NestFactory } from '@nestjs/core';
import { DocumentBuilder } from '@nestjs/swagger';
import { AppModule } from './app.module';
import { KoaSwaggerModule } from 'nestjs-swagger-koa';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
const config = new DocumentBuilder()
.setTitle('Cats example')
.setDescription('The cats API description')
.setVersion('1.0')
.addTag('cats')
.build();
const document = KoaSwaggerModule.createDocument(app, config);
KoaSwaggerModule.setup('api', app, document);
await app.listen(3000);
}
bootstrap();
FAQs
NestJS module for generating Swagger documentation for Koa applications
The npm package nestjs-swagger-koa receives a total of 74 weekly downloads. As such, nestjs-swagger-koa popularity was classified as not popular.
We found that nestjs-swagger-koa demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.