DEV Community

Discussion on: Write AWS Lambda function in Deno

Collapse
 
09wattry profile image
Ryan

Thanks so much for the work here. I noted a few things that I've bumped into while trying to get this to work.

  1. Using typescript for the runtime.ts will slow things down with a transpile.
  2. Running the execution script will have to pull down all dependencies and transpile the lambda making it even more expensive.
  3. Deno uses full paths in it's compiled file references thus one cannot just lift the actual compiled code and place it in the lambda function.
  4. However, it will use the dependencies if the code is moved.
Collapse
 
hayd profile image
Andy Hayden