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

From the docs I only see a couple of items that can be added to the options. Is there a way to return CORS headers, such as Access-Control-Allow-Origin ? I...

I had a real hard time moving my function from behind API Gateway to behind an ALB with a target group. Using the ALB has some nice advantages (like routing)...

I'm unable to get access to the cookies with Express' usual `parseCookies()` middleware when using the 2.0 message format for an HTTP API (the new API gateway thingy). It looks...

Response body which is a valid json becomes something of sort. WHile using with serverless cors:true and cors middleware. "HTTP/1.1 201 OK X-Powered-By: Express Access-Control-Allow-Origin: * Content-Type: application/json; charset=utf-8 Content-Length:...

Hi guys! Is there a way to use Nest.js with this awesome package?

In typescript, you receive an error when using the route method within express (please refer to: https://expressjs.com/en/guide/routing.html app.route() ). if you use a @ts-ignore, the application runs fine, so the...

Does this support Express' ability to render view template files? ````javascript const express = require('express'); const path = require('path'); const serverless = require('serverless-http'); const app = express(); const router =...

I'm very interested in using serverless-http for an application. However, it seems as though, when using this plugin, we will only able to deploy a single lambda to handles all...

I had problems running this library with the current version of Restify. I received the 'unsupported framework' error. I seem to have been able to get it to work with...

**First request Always Fails** Hi. I'm trying to use serverless-http with NestJS. I'm seeing a strange issue where serverless basically processes the first request before the app has bootstrapped, causing...