A deno runtime for AWS Lambda. Deploy deno via docker, SAM, serverless, or bundle it yourself.
Attributes
Very Popular
Official Deno project
Repository
Current version released
2 months ago
Versions
- 1.46.3Latest
- 2.0.0-rc.0
- 1.46.2
- 1.46.1
- 1.46.0
- 1.45.5
- 1.45.4
- 1.45.3
- 1.45.2
- 1.45.1
- 1.45.0
- 1.44.4
- 1.44.3
- 1.44.2
- 1.44.1
- 1.44.0
- 1.43.6
- 1.43.5
- 1.43.4
- 1.43.3
- 1.43.2
- 1.43.1
- 1.42.4
- 1.42.3
- 1.4
- 1.42.2
- 1.42.1
- 1.42.0
- 1.41.3
- 1.41.1
- 1.41.0
- 1.40.5
- 1.40.4
- 1.32.5
- 1.31.3
- 1.31.2
- 1.31.1
- 1.31.0
- 1.30.3
- 1.30.0
- 1.29.4
- 1.29.2
- 1.29.1
- 1.28.3
- 1.28.2
- 1.28.2
- 1.28.2
- 1.28.2
- 1.28.2
- 1.28.1
- 1.27.0
- 1.26.2
- 1.26.1
- 1.26.0
- 1.25.4
- 1.25.3
- 1.25.2
- 1.25.1
- 1.25.0
- 1.24.3
- 1.24.2
- 1.24.1
- 1.24.0
- 1.23.4
- 1.23.3
- 1.23.2
- 1.23.1
- 1.23.0
- 1.22.3
- 1.22.2
- 1.22.1
- 1.22.0
- 1.21.3
- 1.21.2
- 1.21.1
- 1.21.0
- 1.20.6
- 1.20.5
- 1.20.4
- 1.20.3
- 1.20.2
- 1.20.1
- 1.19.3
- 1.18.0
- 1.17.3
- 1.17.2
- 1.17.1
- 1.16.0
- 1.15.3
- 1.14.1
- 1.13.2
- 0.13.2
- 1.12.2
- 1.11.0
- 1.10.3
- 1.10.2
- 1.9.0-1
- 1.9.0
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.2
- 1.4.6
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.3
- 1.1.1
- 1.1.0
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0.0-rc2
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.37.0
- 0.36.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.9.5
- 0.9.4
- 0.9.3
- 0.9.2
- 0.9.1
- 0.9.0
- 0.8.0
- 0.7.0
- v0.6.0
- v0.5.0
- v0.4.0
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.0
- v0.1.0
deno on AWS Lambda
mod.ts
exports types for writing handler functions:
import {
APIGatewayProxyEventV2,
APIGatewayProxyResultV2,
Context,
} from "https://deno.land/x/lambda/mod.ts";
export async function handler(
event: APIGatewayProxyEventV2,
context: Context,
): Promise<APIGatewayProxyResultV2> {
return {
body: `Welcome to deno ${Deno.version.deno} 🦕`,
headers: { "content-type": "text/html;charset=utf8" },
statusCode: 200,
};
}
See deno-lambda repository for more info on running deno on AWS Lambda.
Note: The bootstrap
script is the entrypoint used by AWS Lambda.