aws-lambda-router icon indicating copy to clipboard operation
aws-lambda-router copied to clipboard

Improved routing for AWS Lambda like SNS and ApiGateway

Results 13 aws-lambda-router issues
Sort by recently updated
recently updated
newest added

Hi folks - I see this is a bit stale and there is at least one PR pending that seems to have fixed issues for me. Volunteering to maintain.

Based on suggestion from @TomiTakussaari (https://github.com/spring-media/aws-lambda-router/issues/65). I kept the dynamic require as a fall back since the `handler` tests are basically built around the ability to easily mock a processor...

Some applications need access to the original body data of a request, e.g. for the purposes of verifying digital signatures. Along with the handy JSON-parsed version of the body, it...

Hi, Recently we found out that the first parameter from the `event.path` was ignored. After a quick inspectation of the `lib/proxyIntegration.js` file, I found an "ugly hack" which caused this...

Hi [Index.ts uses dynamic importing](https://github.com/spring-media/aws-lambda-router/blob/master/index.ts#L73) to dynamically load only the processors that are needed. This causes problems with bundling, such as esbuild, because they are unable to bundle the required...

I customized this module locally and added a jsonParse flag to the routes so that I can have the option to parse or not parse a JSON event body. Since...

I setup a POST route with a handler and the handler never got invoked despite debug mode logging that it found a matching route. The logs just end there. I...

Hi Updated aws-lambda-router (from 0.6.2) on our project using Typescript, and noticed strange issue. Aws-lambda-router prevents returning non-string responses from proxyIntegration actions here: https://github.com/spring-media/aws-lambda-router/blob/master/lib/proxyIntegration.ts#L22 So our old code, which returns...

I have a route that looks something like this: `path: "thing/{var1}/{var2}/{var3}/{name}.{extension}"` But right now the code that extract path names and path values doesn't support this. Now my regex foo...

First of all, thank you for the library. However, seeing warnings like this when compiling with webpack. Any ideas on how to fix? ``` WARNING in ./node_modules/aws-lambda-router/lib/proxyIntegration.d.ts 3:8 Module parse...