deno-lambda icon indicating copy to clipboard operation
deno-lambda copied to clipboard

A deno runtime for AWS Lambda. Deploy deno via docker, SAM, serverless, or bundle it yourself.

Results 30 deno-lambda issues
Sort by recently updated
recently updated
newest added

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

documentation
help wanted

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...

help wanted
good first issue

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).

bug

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...

documentation
help wanted

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...

help wanted

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...

help wanted