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
A progressive Node.js framework for building efficient and scalable server-side applications.
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);