npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

openapi-validation-middleware

v3.0.0

Published

Create validation tools for validating requests/responses of OpenAPI and Swagger documented processes in express-style middleware

Downloads

20

Readme

OpenAPI Validation Middleware

Express middleware for validating Swagger and OpenAPI specifications

* only Swagger 2.0 is currently supported

Install

npm install --save openapi-validation-middleware

API

  • create(Object schema) Create a Validator instance for a specified schema. Used internally, but available to those that desire to create their own middleware.
    • schema = Object A fully qualified and valid OpenAPI/Swagger schema
  • errorMiddleware(Error err, Request req, Response res, Function next) Drop-in middleware for handling input errors created by the validation middleware
  • middleware(Object options)
    • options
      • schema = A fully qualified and valid OpenAPI/Swagger schema
      • response = ResponseCallback|Boolean If a ResponseCallback is passed, the function is called and returns a falsey result, the response is handled and any errors are returned with a status of 500. If the function returns a truthy value, the function is expected to have handled the response as desired and no further action is taken. If a truthy Boolean is passed, the response is handled as if the ResponseCallback returned falsey.
      • request = RequestErrorHandler Optionally overrides normal error handling

Data types

  • function MiddlewareFunction(Request req, Response res, Function next)

  • function ResponseCallback(ValidationErrors error, Response res, Object options)

  • function RequestErrorHandler(ValidationErrors error, Response res, Function next)

  • class ValidationErrors

    • request = Object references the request passed to the middleware
    • path = String the original OpenAPI/Swagger path name. ex: /special/{path}
    • operation = Object the Path object from the schema
    • errors = Array containing one or more ValidationError objects
  • class ValidationError

    • code/name = String the code used to create the error message
    • value = Mixed the value that failed validation
    • info = Object data about the validation
    • message = String the message created based on the code, info, and value
  • class Validator

    • public MiddlewareFunction getRequestValidator(Request req, ResponseCallback|Boolean validateResponse)

Example

const express = require('express');
const { middleware, errorMiddleware } = require('openapi-validation-middleware');
const options = {
  schema: require('./test/fixtures/swagger.json'),
  response(error, res, { code, data, headers, body, encoding, operation }) {
    // if you only log errors in development, instead of failing the request
    // or on a particular route
    if (process.env.NODE_ENV === 'development' || operation.path === '/special/{path}') {
      if (error) console.error(error);
      res.headers(headers).status(code).json(data);
      return true;
    }
    if (error) {
      // special error logging
      return true;
    }
  },
  request(error, res, next) {
    if (error.path === '/special/{path}') {
      // special handling
      res.sendStatus(400);
      return;
    }
    next(error);
  }
};

const app = express();
app.use(bodyParser.json());
app.use(middleware(options));
app.use(handler);
app.use(errorMiddleware);
const server = app.listen(8194);

License

MIT