koa-joi-router-ng-docs

1.2.3 • Public • Published

koa-joi-router-ng-docs

NPM version build status npm download

This project is based on chuyik/koa-joi-router-docs.

This fork use Joi@17 version

A node module for generating Swagger 2.0 JSON definitions from existing koa-joi-router routes.

Aiming to be a replacement for koa-resourcer-docs which can take advantage of various Swagger 2.0 tools for generating client libraries, test suites, AWS Lambda/serverless, etc.

Preview

code_to_docs

Install

# use npm 
npm install koa-joi-router-ng-docs --save
# use yarn 
yarn add koa-joi-router-ng-docs

Example

Visit example/ folder to see the full example.

API

new SwaggerAPI()

Creates a new SwaggerAPI instance.

swaggerAPI.addJoiRouter(router, options)

Add a joi-router instance to the API. The router should already have all its routes set up before calling this method (which pulls the route definitions from the router's .routes property).

Options:

  • prefix: Prefix to add to Swagger path (use prefix from JoiRouter if not set)

swaggerAPI.generateSpec(baseSpec, options)

Create a Swagger specification for this API. A base specification should be provided with an info object (containing at least the title and version strings) and any other global descriptions.

Options:

  • defaultResponses: Custom default responses
    {
      200: {
        description: 'Success'
      }
    }

Acknowledgements

We are grateful to the authors of existing related projects for their ideas and collaboration:

Readme

Keywords

none

Package Sidebar

Install

npm i koa-joi-router-ng-docs

Weekly Downloads

16

Version

1.2.3

License

MIT

Unpacked Size

32.5 kB

Total Files

16

Last publish

Collaborators

  • yadickson