express-cors-options

0.0.4 • Public • Published

Express CORS OPTIONS

Create a catch all for responding to CORS OPTIONS method requests


Installation

npm install express-cors-options

Usage:

// Place after router
app.use(app.router);
 
//
var options = {
    origin: 'http://foo.com', // default: '*'
    method: 'GET,PUT,POST', // default: 'GET,PUT,POST,DELETE,HEAD,OPTIONS'
    headers: 'Content-Type, Content-Length' // default: 'Content-Type, Authorization, Content-Length, X-Requested-With, X-HTTP-Method-Override'
};
 
app.use(require('express-cors-options')(options));

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i express-cors-options

    Weekly Downloads

    2

    Version

    0.0.4

    License

    none

    Last publish

    Collaborators

    • jmerrick