🎒 Bagger
A joi-compatible tool for building Swagger (Open API 3) documents. It enables developers to use the same joi schemas for validation and documentation, ensuring that API documentation never becomes stale.
Features
- 🔨 Builder pattern: Dead simple api to create complex Swagger documents.
- ✨ joi compatibility: Enables developers to use the same schemas for validation and documentation.
- 🔎 Intellisense: Really nice intellisense suggestions, and TypeScript definitions.
- 🔒 Type safety: Bagger always produces 100% valid Swagger documents. If you use TypeScript the compiler will enforce correctness in most cases, and otherwise Bagger will validate during compilation.
Usage
// Use the default Bagger instance
const bagger = require('@digitalroute/bagger').default;
// OR
// Create a new instance
const { Bagger } = require('@digitalroute/bagger');
const bagger = new Bagger();
Example
const { Bagger } = require('@digitalroute/bagger');
const joi = require('@hapi/joi');
const bagger = new Bagger();
bagger.configure({
title: 'Bagger API',
version: 'v1',
description: 'Provides resources for building swagger documents'
});
bagger
.addRequest('/bags', 'get')
.addTag('bags')
.addTag('build')
.addResponse(
bagger
.response(200)
.description('Successfully fetched all bags')
.content(
'application/json',
joi
.array()
.items(joi.string())
.example([['handbag', 'backpack', 'purse']])
)
);
const swaggerDefinition = bagger.compile();