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

/micro-access/

    Package Sidebar

    Install

    npm i micro-access

    Weekly Downloads

    3

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • kevva