micro-access

1.0.0 • Public • Published

micro-access Build Status

Easy CORS handling for micro

Install

$ npm install micro-access

Usage

const {json, send} = require('micro');
const microAccess = require('micro-access');
 
module.exports = microAccess()(async (req, res) => {
    const body = await json(req);
    send(res, 200, body);
});

API

microAccess([options])(handler)

options

Type: Object

Same as control-access.

handler

Type: Function

The request handler to wrap.

Related

License

MIT © Kevin Mårtensson

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    1
  • 0.1.0
    2

Package Sidebar

Install

npm i micro-access

Weekly Downloads

3

Version

1.0.0

License

MIT

Last publish

Collaborators

  • kevva