
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
koa-joi-router-docs-v2
Advanced tools
OpenAPI(aka Swagger) API docs generator for koa-joi-router.
This project is based on https://github.com/chuyik/koa-joi-router-docs which does not support latest Joi version.
This project uses latest koa-joi-router
package. Also this package uses joi-to-swagger
.
Also we can rename keys, like nullable
to be x-nullable
. For example for redoc
Example:
const spec = generator.generateSpec({
info: {
title: 'Example API',
version: '1.1'
},
basePath: '/'
}, undefined, { 'nullable': 'x-nullable' });
No additional action required, it should be possible just to replace older package.
A node module for generating Swagger 2.0 JSON definitions from existing koa-joi-router routes.
# use npm
npm install koa-joi-router-docs-v2 --save
# use yarn
yarn add koa-joi-router-docs-v2
Visit example/ folder to see the full example.
Creates a new SwaggerAPI instance.
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:
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.
baseSpec
example:
{
info: {
title: 'Example API',
version: '1.1'
},
basePath: '/'
}
options
example:
{
200: {
description: 'Success'
}
}
renameKeys
example:
{ 'nullable': 'x-nullable' }
FAQs
OpenAPI(aka Swagger) API docs generator for koa-joi-router.
The npm package koa-joi-router-docs-v2 receives a total of 321 weekly downloads. As such, koa-joi-router-docs-v2 popularity was classified as not popular.
We found that koa-joi-router-docs-v2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.