lambda-middleware
lambda-middleware copied to clipboard
A collection of middleware for AWS lambda functions.
Closes #70 ## Checklist: - [x] I have updated the documentation accordingly. (nothing to update here) - [x] I have read the **CONTRIBUTING** document. (apologies if I missed something; please...
**Is your feature request related to a problem? Please describe.** `deserializeBody()` currently assumes an event type `APIGatewayProxyEvent`. It would be helpful if it could also support APIGatewayProxyEventV2 ** Would you...
**Is your feature request related to a problem? Please describe.** I'm trying to add the `cors` middleware to a compose chain, and can't seem to find the right combination. Here's...
## Describe the bug The cors middleware just assumes that it gets an APIGatewayEvent, but in practice middleware is often used without first ensuring a certain input. E.g. a lambda...