lambda-api
lambda-api copied to clipboard
Lightweight web framework for your serverless applications
When using a base path, the `/` route doesn't seem to run middleware properly. I wrote a failing test case using CORS as an example to illustrate: ```js it('Middleware runs...
Is it possible to pipe all logging entries to Loggly? Any kind of logging middleware that can be added, including access logs?
Firefox will not recognize cors headers due to them being lowercased: https://github.com/jeremydaly/lambda-api/blob/0b753d855fd5be1f25b5291c78f25171d2151e19/lib/response.js#L68 Removing the "toLowerCase" fixes the issue. ``` Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote...
the callback step in response is started but is not awaited, so my lambda finishes before finishing async operations inside finally step
When unit testing my handler functions with Jest (although I doubt this issue is specific to Jest), with the signature of `somefunction(req, res)`, I'd like to test specific behavior my...
Hi! Lambda-api is a great package and has been really helpful in our one single backend lambda architecture 🚀 Today, I faced a really hard to debug issue and I...
Hello, Im not sure if this is an issue or if I have a setup issue, but if I do a domain mapping on API gateway then the paths no...
Hey Jeremy, First of all thanks for the amazing framework. I'm struggling here regarding returning error to clients, like 404 not found. If i use the framework error engine this...
`sls invoke` is useful for testing our API one request at a time. It would be nice to spin up a local version of the API on localhost to enable...
I was searching to create the options method dynamically I foud a way but the only thing is that the feature api.routes is for debug purpose So I'm guessing there...