UNPKG

hono-firebase-functions

Version:

Run Hono apps on Firebase Functions using a simple adapter that bridges Firebase’s HTTP layer with Hono’s fetch API.

10 lines (6 loc) 126 B
import {Hono} from "hono"; const app = new Hono(); app.get("/", (c) => { return c.text("Hello Hono!"); }); export {app};