Skip to main content
Module

x/lambda/hello.ts

A deno runtime for AWS Lambda. Deploy deno via docker, SAM, serverless, or bundle it yourself.
Very Popular
Go to Latest
File
import { Context, Event } from "https://deno.land/x/lambda/mod.ts";
export async function handler(event: Event, context: Context) { return { statusCode: 200, body: `Welcome to deno ${Deno.version.deno} 🦕` };}