lambda-local
lambda-local copied to clipboard
Commandline tool to run Amazon Lambda function on local machines.
Currently You cannot make a Get request if content-type header is not set to `application/json`(e.g. via browser) This is not standard behaviour, Content heard should only be required for request...
Hello! First of all, thanks for lambda-local, this is an excelent product. I have some use cases where I read infomation (like `functionName`) from the context object and I use...
Closes #239
Hi, my application does extensive logging to console/output and it is extremely hard to follow separate invocations/executions because there is no way to separate requests when running lambda-local using the...
My use case was that I wanted the "awsRequestId" to be something I specified. In this issue #225, the proposer seems to want to change the function name to any...
When running the `lambda-local` CLI in non-verbose mode ``` ./node_modules/.bin/lambda-local -v 0 -l src/handler.js -h handler --watch 8008 ``` only these of the `lambda-local` loggings show up in the console...
I noticed watch mode isn't support for ESM however commenting out the check seems to work at first glance. https://github.com/ashiina/lambda-local/blob/95fb3dfd18ec51014d3cc5d9f405e21a5d784a50/src/cli.ts#L142 Before I go deeper and potentially submit a PR, I...
Is there a way to pass clientContext when using the CLI rather than the API? Thanks!
### Context Just tried to use this package for local lambda development on my project, which is in ES module. Version: `2.2.0`. Command that I run: ``` lambda-local --esm -l...
Hi, I have a bit of a hacked together usecase where I am using `ts-rest` to handle api definitions + request/response parsing and then `lambda-local` to try and hit that...