Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

koas-parameters

Package Overview
Dependencies
1
Maintainers
1
Versions
22
Issues
File Explorer

Advanced tools

koas-parameters

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

    0.7.0latest
    npm

Version published
Maintainers
1
Weekly downloads
1,041
increased by55.84%

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 installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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