JSPM

express-openapi-defaults

0.5.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 133
  • Score
    100M100P100Q81896F
  • License MIT

Express middelware to set openapi parameter defaults in request properties.

Package Exports

  • express-openapi-defaults

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (express-openapi-defaults) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Note: This project has been deprecated in favor of openapi-default-setter

Moving forward you can use openapi-default-setter. See express-openapi for an example.

express-openapi-defaults NPM version Downloads Build Status Coveralls Status

Express middelware to set openapi parameter defaults in request properties.

Highlights

  • Effortlessly set default values in header and query request properties.
  • Path parameters are not supported because it is assumed they will always have some value.
  • Performant.
  • Extensively tested.
  • Small footprint.
  • Currently supports openapi 2.0 (a.k.a. swagger 2.0) parameter lists.
  • Does not perform type coercion (see express-openapi-coercion).
  • Does not perform validation (see express-openapi-validation).

Example

See ./test/data-driven/*.js for more examples.

var app = require('express')();
var defaults = require('express-openapi-defaults')({
  parameters: [
    {
      in: 'query',
      type: 'integer',
      name: 'foo',
      default: 5
    }
  ]
});

app.get('/something', defaults, function(req, res) {
  // GET /something
  console.log(req.query.foo); //=> 5
});

API

defaults(args)

args.parameters

An array of openapi parameters.

LICENSE

The MIT License (MIT)

Copyright (c) 2016 Kogo Software LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.