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

Run Express and other Node.js frameworks on AWS Serverless technologies such as Lambda, API Gateway, Lambda@Edge, and more.

Results 102 serverless-express issues
Sort by recently updated
recently updated
newest added

Hello! It seems like express v5 and its bundled body-parser v2 do not work with serverless-express. The body-parser dependency has changed its internals to use "on-finished" dependency to check if...

Hi all, When deploying using `serverless` with `serverless-api-gateway-caching` like so: ``` functions: graphql: handler: src/handler.graphqlHandler events: - http: path: graphql method: post cors: true integration: lambda caching: enabled: true cacheKeyParameters:...

Hello 👋 I'm using the package with an Express server. I've registered a [custom error middleware](https://expressjs.com/en/guide/error-handling.html) to catch any errors that might have happened since the request arrived, but my...

s3(image) + cloudfront + lambda@edge I'm only processing image requests from users authenticated with vanilla http. *** vanilla-http xxx.cloudfront.net/image.png const authUtil = require("./middlewares/auth"); exports.handler = (event, context, callback) => {...

GIven the following resource `/testing/{proxy+}` a call to `/testing/creategroup` is evaluated to `/creategroup` rather than `/testing/creatgroup`. Looking at [getPathWithQueryStringParams](https://github.com/vendia/serverless-express/blob/671f914429e9708bfb1ee6ba76b5947a917592df/src/event-sources/utils.js#L7), it appears that if proxy pathParameter is present, it is simply...

I saw this interesting [medium](https://towardsaws.com/serverless-love-story-nestjs-lambda-part-i-minimizing-cold-starts-4ba513e5ce02) post based on `aws-serverless-express` that helps with cold-start in nestjs by moving the bootstrap part to the init stage and not within the handler, like...

Hello, thank you for your great work! I'm currently using v3 with Azure Functions and I would love to move to v4. I've been looking at `azure/init` branch and I'm...

Hello vendia team, I got stuck while using serverless-express to deploy my own nextJS project. I noticed there is no nextJS demo in example folder. NextJs is a server-side-render platform...

I am using vendia/serverless-express to forward my API gateway request to express. From API Gateway I am passing path parameter and same path parameter value I can see in event...

We are trying to integrate the NestJs with serverless stack and AWS . We have simple Controller that has a Service as a dependency. when we make request to the...