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

I tried this (see below) but can't get the connection event to trigger. ``` 'use strict' const serverlessExpress = require('@codegenie/serverless-express'); const app = require('./app'); const server = serverlessExpress.createServer(app) const {initWebSocket}...

I've added Genezio as a supported serverless functions provider *Issue #, if available:* *Description of changes:* # Checklist - [x] Tests have been added and are passing - [x] Documentation...

*Issue #, if available:* Fixes: #347 Possibly fixes: #654 *Description of changes:* When a request comes in as an API Gateway V1 request, the request headers get passed down as-is....

Hey, I am attempting to deploy a small Express app to AWS as a Lambda connected to ALB via target group. ```javascript const serverless = require('@codegenie/serverless-express') const express = require('express')...

Hi i am using this doc that use your package https://docs.nestjs.com/faq/serverless#example-integration But when i send a call using sam i receive this error: `2024-08-06T20:21:19.852Z 7ad7a4bd-18a5-4365-9d2b-51239d1c7153 ERROR Invoke Error {"errorType":"TypeError","errorMessage":"(0 ,...

Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `@vendia/[email protected]` for the project I'm working on. My issue is with apollo-server as...

The implementation of the write method is missing a boolean return value indicating the need of `drain` https://github.com/CodeGenieApp/serverless-express/blob/mainline/src/response.js. See https://nodejs.org/api/stream.html#writablewritechunk-encoding-callback 'The return value is true if the internal buffer is...

*Issue #, if available:* *Description of changes:* - Add Lattice event source - Add example Lattice event - Add unit test around Lattice event - Update documentation # Checklist -...

Hello, Thank you for this great library! I was wondering if `serverless-express` supports deployment on Google Cloud Functions (GCP). If not, are there any plans to add support? GCP is...

The #692 PR introduced a bug when using with express and an async middleware: the IncomingMessage/Request (stream) is marked as not readable and fails when used with body-parser (for example)....