express-openapi-validator
Automatically validate API requests and responses with OpenAPI 3 and Express.

express-openapi-validator downloads express-openapi-validator version express-openapi-validator license

express-openapi-validatorSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
๐ŸŒŸ Show real-time usage chart on express-openapi-validator's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of express-openapi-validator](https://npm-compare.com/img/npm-trend/THREE_YEARS/express-openapi-validator.png)](https://npm-compare.com/express-openapi-validator#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
๐ŸŒŸ Show GitHub stars trend chart on express-openapi-validator's README.md, just copy the code below.
## GitHub Stars Trend
[![GitHub Stars Trend of express-openapi-validator](https://npm-compare.com/img/github-trend/express-openapi-validator.png)](https://npm-compare.com/express-openapi-validator)
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
express-openapi-validator376,118981439 kB1862 months agoMIT
README for express-openapi-validator

๐Ÿฆ‹ express-openapi-validator

build 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.0.x or 3.1.x 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
  • โœ๏ธ OpenAPI 3.0.x and 3.1.x spec support
  • โœจ Express 4 and 5 support

Docs:

GitHub stars Twitter URL

Express 5 support available in >=v5.5.0!

OAS 3.1 support available in >=v5.4.0!

NestJS Koa and Fastify now available! ๐Ÿš€

Install

npm install express-openapi-validator

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.

Documentation

See the doc for complete documenation

deprecated legacy doc

License

MIT

Buy Me A Coffee