express-openapi-router

0.0.2 • Public • Published

express-openapi-router Build Status codecov

This router will allow you to route controllers based on the operationId inside your OpenAPI 3.0 spec file. The usage is very similar to the default Express JS Router.

Install

$ npm install express-openapi-router

Usage

Tests and examples use the official Petstore example spec: https://github.com/OAI/OpenAPI-Specification/blob/master/examples/v3.0/petstore.yaml

Notice the operationId attribute of the endpoint definition inside the spec file:

paths:
  /pets:
    get:
      summary: List all pets
      operationId: listPets

Create a routes.js file that defines your controllers for each operationId in your OpenAPI spec:

const OpenApiRouter = require('express-openapi-router');
 
const api = new OpenApiRouter(require("path/to/your/openapi.json"));
api.use("listPets", (req, res) => {
   res.send("Here are your pets!");
});
 
module.exports = api.router; // this attribute contains the actual ExpressJS Router

In your app.js:

const routes = require("routes.js");
 
app.use(routes);

MIT © Zimmo.be

/express-openapi-router/

    Package Sidebar

    Install

    npm i express-openapi-router

    Weekly Downloads

    4

    Version

    0.0.2

    License

    MIT

    Unpacked Size

    4.4 kB

    Total Files

    6

    Last publish

    Collaborators

    • mathieumaes