An adapter for using Hono with Alibaba Cloud Function Compute 3.0.
一个用于在阿里云函数计算 FC 3.0 中使用 Hono 的适配器。
npm install hono-alibaba-cloud-fc3-adapter
import { Hono } from "hono";
import { handle } from "hono-alibaba-cloud-fc3-adapter";
const app = new Hono();
app.get("/", (c) => c.text("Hello Hono!"));
export const handler = handle(app);
For more details, check out Alibaba Cloud Function Compute - Hono.