serverless-http icon indicating copy to clipboard operation
serverless-http copied to clipboard

Use your existing middleware framework (e.g. Express, Koa) in AWS Lambda 🎉

Results 55 serverless-http issues
Sort by recently updated
recently updated
newest added

I am using this library (v3.2.0) with an Express (4.17.1) app. I have two routes. First route sets a single `set-cookie`. The second route sets multiple `set-cookie`s. I can confirm...

This PR builds upon #192 and addresses a lot of the issues with the initial PR and begins to add tests.

I am trying to migrate my application from REST to GraphQL but I encountered a problem. Whenever I run a query in which it works perfectly fine like normal it...

I am trying to convert a nodejs app that uses `https` to specify a certificate to authorize a request based on mutual TLS, basically making something like the following work...

Hi, ```javascript { 'headers': { 'someHeader': 'someValue' }, 'multiValueHeaders': { 'someOtherHeader': ['someOtherValue'] } } ``` The expected outcome is that 'multiValueHeaders' contains all headers

Where can I find release notes for 3.0? Specifically I'd like to know about any breaking changes.

I've been playing with your framework (great work, btw) and felt like a tutorial for AWS/Express usage would be a great addition for newcomers. This code snipped was tested in...

I want to do some additional logging. Why doesn't this work? ``` exports.pouchdbServerlessHandler = serverless(app, { request(request, event, context) { console.log(request, event, context); }, async response(response, event, context) { console.log(response,...

With the same code of the issue [https://github.com/dougmoscrop/serverless-http/issues/252](url) I'm getting an request.body error which says undefined. The context parameter log: ``` bindings: { req: { method: 'GET', url: 'http://localhost:7071/api/serverless', originalUrl:...

I am currently using serverless-http for azure with express while going through the state i got an error from serverless node module. I have integrate it with serverless framework. Here...