Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@interledger/openapi

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@interledger/openapi

Validates requests and responses according to an OpenAPI 3.1 schema

  • 2.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
917
decreased by-16.26%
Maintainers
0
Weekly downloads
 
Created
Source

OpenAPI 3.1 Validator

This package exposes functionality to validate requests and responses according to a given OpenAPI 3.1 schema.

Installation

You can install the package using:

npm install @interledger/openapi

Usage

Validators

First, instantiate an OpenAPI validator object with a reference to your OpenAPI spec:

const openApi = await createOpenAPI(OPEN_API_URL_OR_FILE_PATH)

Then, validate requests and responses as such:

const validateRequest = openApi.createRequestValidator({
  path: '/resource/{id}',
  method: HttpMethod.GET
})

validateRequest(request) // throws or returns true

const validateResponse = openApi.createResponseValidator({
  path: '/resource/{id}',
  method: HttpMethod.GET
})

validateResponse({ body: response.body, status }) // throws or returns true

Note

The underlying response & request validator packages use the Ajv schema validator library. Each time validators are created via createRequestValidator and createResponseValidator, a new Ajv() instance is also created. Since Ajv recommends instantiating once at initialization, these validators should also be instantiated just once during the lifecycle of the application to avoid any issues.

Middleware

Likewise, you can validate both requests and responses inside a Koa middleware method, using createValidatorMiddleware:

const openApi = await createOpenAPI(OPEN_API_URL)
const router = new SomeRouter()
router.get(
  '/resource/{id}',
  createValidatorMiddleware(
    openApi,
    {
      path: '/resource/{id}',
      method: HttpMethod.GET
    },
    { validateRequest: true, validateResponse: false } // optional arguments to determine what you want the middleware to validate. Both properties are true by default. Setting both variables to false results in a noop middleware.
  )
)

If a validation error occurs, the middleware will throw an OpenAPIValidatorMiddlewareError:

app.use(async (ctx, next) => {
  try {
    await next()
  } catch (err) {
    if (err instanceof OpenAPIValidatorMiddlewareError) {
      console.log(err.message) // e.g. Received error validating OpenAPI response: response.receivedAmount.value must match format "uint64"
      console.log(err.status) // e.g. 400
    }
  }
})

FAQs

Package last updated on 10 Oct 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc