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 don't know how to use context.log with serverless-express and Azure functions. Please tell me how to use context.log.

Hit a problem upgrading from 3.4.0 to 4.10.1. I referenced your UPGRADE.md and examples. Using [email protected], my url path for a particular REST GET call gets resolved to /profiles/envConfig/client-config-v1 as...

The AWS API Gateway console allows you to navigate to your resource, choose "Test" and send a test request to your Lambda. When I tried this, the Lambda was throwing...

I get the following TypeScript error when building using Koa version 2.13.4 and @vendia/serverless-express version 4.5.2: ``` server/index.ts(10,51): error TS2322: Type 'import("/path/to/project/node_modules/@types/koa/index.d.ts")' is not assignable to type 'RequestListener'. -- 80...

I'm running the latest version of `@vendia/serverless-express` in AWS lambda and have tried to using `res.cookie(...)` and `res.header('set-cookie', ...)` and in both cases no `set-cookie` response headers are visible in...

I get this error from src/configure.d.ts when using typescript: >node_modules/@vendia/serverless-express/src/configure.d.ts:2:25 - error TS2307: Cannot find module 'aws-lambda' or its corresponding type declarations. I don't see aws-lambda in the package.json at...

https://docs.aws.amazon.com/lambda/latest/dg/lambda-urls.html

Hey, i'm trying to consume the middleware module as esm moudle with no luck tried **import {eventContext} from '@vendia/serverless-express/middleware'** but got an error stating there is no such module. how...

help wanted

The [starter example for Nest JS](https://github.com/vendia/serverless-express/tree/mainline/examples/basic-starter-nestjs) does not work with root paths. ## Steps to reproduce ```shell git clone https://github.com/vendia/serverless-express.git cd serverless-express/examples/basic-starter-nestjs npm ci ``` Remove the path from the...

``` const { getCurrentInvoke } = require('@vendia/serverless-express') app.get('/', (req, res) => { const { event, context } = getCurrentInvoke() res.json(event) }) ``` What is wrong about the code above? I'm...