deno lambda:AWS Lambda的deno运行时。 通过dockerSAMlessserver部署deno或自己捆绑 源码
AWS Lambda上的deno AWS Lambda的运行时。 通过(请参阅入门), ,或自己将其打包来部署名词代码。 定义处理程序函数,例如: // hello.ts import { APIGatewayProxyEvent , APIGatewayProxyResult , Context , } from "https://deno.land/x/lambda/mod.ts" ; export async function handler ( event : APIGatewayProxyEvent , context : Context , ) : P
用户评论