Socket
Socket
Sign inDemoInstall

koas-parameters

Package Overview
Dependencies
77
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    koas-parameters

Koas parameters attempts to coerce path and query parameters to the type specified in their respective JSON schema.


Version published
Maintainers
1
Created

Readme

Source

Koas Operations

Koas parameters attempts to coerce path and query parameters to the type specified in their respective JSON schema.

Installation

npm install koa koas-core koas-parameters

Usage

const Koa = require('koa');
const koas = require('koas-core');
const koasParameters = require('koas-parameters');

const api = require('./api.json');

async function main() {
  const app = new Koa();
  app.use(
    await koas(api, [
      koasParameters({
        parsers: {
          //
        },
      }),
    ]),
  );
}

Options

  • parsers: A mapping of JSON schema types to parsers. This allows to override how certain values are parsed. In most cases, the defaults will suffice.

FAQs

Last updated on 30 Apr 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc