0.1.4 • Published 11 months ago

@siyahjs/swagger v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

@siyahjs/swagger

Plugin for siyah to auto-generate Swagger page.

Installation

bun add @siyahjs/swagger

Example

import { Siyah, t } from 'siyah'
import { swagger } from '@siyahjs/swagger'

const app = new Siyah()
    .use(swagger())
    .get('/', () => 'hi', { response: t.String({ description: 'sample description' }) })
    .post(
        '/json/:id',
        ({ body, params: { id }, query: { name } }) => ({
            ...body,
            id,
            name
        }),
        {
            params: t.Object({
                id: t.String()
            }),
            query: t.Object({
                name: t.String()
            }),
            body: t.Object({
                username: t.String(),
                password: t.String()
            }),
            response: t.Object({
                username: t.String(),
                password: t.String(),
                id: t.String(),
                name: t.String()
            }, { description: 'sample description' })
        }
    )
    .listen(8080);

Then go to http://localhost:8080/swagger.

config

provider

@default 'scalar' Choose between Scalar & SwaggerUI

scalar

Customize scalarConfig, refers to Scalar config

swagger

Customize Swagger config, refers to Swagger 3.0.3 config

path

@default '/swagger'

The endpoint to expose Swagger

excludeStaticFile

@default true

Determine if Swagger should exclude static files.

exclude

@default []

Paths to exclude from the Swagger endpoint

0.1.4

11 months ago

0.1.2

11 months ago