JSPM

  • Created
  • Published
  • Downloads 10733
  • Score
    100M100P100Q162522F
  • License MIT

Package Exports

  • nestjs-asyncapi

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nestjs-asyncapi) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.

NPM Version Package License NPM Downloads CircleCI Coverage Discord Backers on Open Collective Sponsors on Open Collective

Description

The idea is to generate asyncapi documentation (for event based services, like websockets) similar to nestjs/swagger.

Current state: package can generate html (similar to swagger-ui) from asyncapi json (contract) file. Ideal state: generate asyncapi json (contract) file based on decorators (similar to swagger)

Usage example:

const app = await NestFactory.create<NestExpressApplication>(AppModule);
await AsyncApiModule.setup(docRelPath, app, data);