Skip to content

🦋 Auto-validates api requests, responses, and securities using ExpressJS and an OpenAPI 3.x specification

License

Notifications You must be signed in to change notification settings

SimulConsult/express-openapi-validator

This branch is 131 commits behind cdimascio/express-openapi-validator:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

00a9c8f · Feb 3, 2024
Dec 30, 2022
Nov 12, 2023
Jan 27, 2024
Feb 2, 2024
Feb 2, 2024
Dec 3, 2019
Dec 3, 2021
Sep 28, 2020
Mar 19, 2019
Sep 28, 2020
Apr 2, 2020
Sep 28, 2020
Mar 26, 2019
Oct 27, 2020
Jan 27, 2024
Dec 7, 2019
Jan 31, 2024
Mar 20, 2019
Feb 3, 2024
Apr 25, 2020
Nov 12, 2023
Dec 25, 2020
Jan 28, 2024
Jan 28, 2024
Jul 15, 2019
Nov 12, 2023

Repository files navigation

🦋 express-openapi-validator

docs.

example workflow All Contributors Coverage Status Codacy Badge Gitpod Ready-to-Code

An OpenApi validator for ExpressJS that automatically validates API requests and responses using an OpenAPI 3 specification.

🦋express-openapi-validator is an unopinionated library that integrates with new and existing API applications. express-openapi-validator lets you write code the way you want; it does not impose any coding convention or project layout. Simply, install the validator onto your express app, point it to your OpenAPI 3 specification, then define and implement routes the way you prefer. See an example.

Features:

  • ✔️ request validation
  • ✔️ response validation (json only)
  • 👮 security validation / custom security functions
  • 👽 3rd party / custom formats / custom data serialization-deserialization
  • 🧵 optionally auto-map OpenAPI endpoints to Express handler functions
  • ✂️ $ref support; split specs over multiple files
  • 🎈 file upload

Docs:

GitHub stars Twitter URL

NestJS Koa and Fastify now available! 🚀

Install

npm install express-openapi-validator

## latest beta
npm install [email protected]

Usage

  1. Require/import the openapi validator
const OpenApiValidator = require('express-openapi-validator');

or

import * as OpenApiValidator from 'express-openapi-validator';
  1. Install the middleware
app.use(
  OpenApiValidator.middleware({
    apiSpec: './openapi.yaml',
    validateRequests: true, // (default)
    validateResponses: true, // false by default
  }),
);
  1. Register an error handler
app.use((err, req, res, next) => {
  // format error
  res.status(err.status || 500).json({
    message: err.message,
    errors: err.errors,
  });
});

Important: Ensure express is configured with all relevant body parsers. Body parser middleware functions must be specified prior to any validated routes. See an example.

See the doc for complete documenation

deprecated legacy doc

License

MIT

Buy Me A Coffee

About

🦋 Auto-validates api requests, responses, and securities using ExpressJS and an OpenAPI 3.x specification

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 99.4%
  • Other 0.6%