Socket
Socket
Sign inDemoInstall

koas-parameters

Package Overview
Dependencies
63
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
Weekly downloads
1.8K
decreased by-7.5%
Maintainers
1
Created
Weekly downloads
 

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 { parameters } = require('koas-parameters');

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

const app = new Koa();
app.use(
  koas(api, [
    parameters({
      parsers: {
        // Additional 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.

Keywords

FAQs

Last updated on 14 Jun 2022

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