CORS middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda
This middleware sets HTTP CORS headers (Access-Control-Allow-Origin
, Access-Control-Allow-Headers
, Access-Control-Allow-Credentials
), necessary for making cross-origin requests, to the response object.
Sets headers in after
and onError
phases.
To install this middleware you can use NPM:
npm install --save @middy/http-cors
credentials
(bool) (optional): if true, setsAccess-Control-Allow-Credentials
(defaultfalse
)headers
(string) (optional): value to put inAccess-Control-Allow-Headers
(default:false
)methods
(string) (optional): value to put inAccess-Control-Allow-Mehtods
(default:false
)getOrigin
(function(incomingOrigin:string, options)) (optional): take full control of the generating the returned origin. Defaults to using the origin or origins option.origin
(string) (optional): origin to put in the header (default: "*
")origins
(array) (optional): An array of allowed origins. The incoming origin is matched against the list and is returned if present.exposeHeaders
(string) (optional): value to put inAccess-Control-Expose-Headers
(default:false
)maxAge
(string) (optional): value to put in Access-Control-Max-Age header (default:null
)requestHeaders
(string) (optional): value to put inAccess-Control-Request-Headers
(default:false
)requestMethods
(string) (optional): value to put inAccess-Control-Request-Mehtods
(default:false
)cacheControl
(string) (optional): value to put in Cache-Control header on pre-flight (OPTIONS) requests (default:null
)
import middy from '@middy/core'
import httpErrorHandler from '@middy/http-error-handler'
import cors from '@middy/http-cors'
const handler = middy((event, context) => {
throw new createError.UnprocessableEntity()
})
handler.use(httpErrorHandler())
.use(cors())
// when Lambda runs the handler...
handler({}, {}, (_, response) => {
t.is(response.headers['Access-Control-Allow-Origin'],'*')
t.deepEqual(response,{
statusCode: 422,
body: 'Unprocessable Entity'
})
})
import middy from '@middy/core'
import cors from '@middy/http-cors'
const handler = middy((event, context) => {
return {}
})
handler.use(cors())
// when Lambda runs the handler...
handler({}, {}, (_, response) => {
t.is(response.headers['Access-Control-Allow-Origin'],'*')
})
For more documentation and examples, refers to the main Middy monorepo on GitHub or Middy official website.
Everyone is very welcome to contribute to this repository. Feel free to raise issues or to submit Pull Requests.
Licensed under MIT License. Copyright (c) 2017-2021 Luciano Mammino, will Farrell, and the Middy team.