deno-lambda
deno-lambda copied to clipboard
A deno runtime for AWS Lambda. Deploy deno via docker, SAM, serverless, or bundle it yourself.
Add terraform example #180 @hayd kindly review and check it out
I have an otherwise working application that fails if I try to use an import map; specifically the kind of import maps generated by [trex](https://nicedoc.io/crewdevio/Trex). I have created a minimal...
https://github.com/kyeotic/deno-lambda-repro related #155
Deno has a flag to run without [type-checking](https://deno.land/manual/typescript/overview#type-checking), which is useful for lambdas that have already been type-checked. There are already several `DENO` ENV VARs to configure behavior, a `DENO_NOCHECK`...
Howdy :wave: Just wondering if you had benchmarks for Deno performance on Lambda squirreled away you could share. Trying to convince a team to give this a shot and benchmarks...
Revert: https://github.com/hayd/deno-lambda/pull/156/commits/31da6a2921356c1c65a4338ed79f2ccd91f4beb5 I've not investigated the issue, but assuming there was a minor api change that affected our error handing [here](https://github.com/hayd/deno-lambda/blob/master/runtime/bootstrap#L103-L104).
I'm trying to give this lambda runtime a go on Pulumi, which should theoretically be similar to AWS-CDK but I'm not sure they support all the constructs necessary. I can...
I am not able to invoke lambda locally with Serverless framework with `sls invoke local -f ...` All works well when I deploy my lambda, but when I try to...
Previously ``` import type { Context, APIGatewayProxyEvent } from "https://deno.land/x/lambda/mod.ts"; ``` etc. the deps and gen were correctly cached (from the layer and the function code), this seems to no...
I have the following configuration in Terraform: ```hcl resource "aws_lambda_function" "this" { # ... image_config { working_directory = "/var/task/foo/bar" command = ["baz.handler"] } } ``` but the bootstrap script seems...