Hono is a lightweight ultrafast web framework designed for the edge.
ts
import { Hono } from "hono";
const app = new Hono();
app.get("/", c => c.text("Hono!"));
export default app;Use create-hono to get started with one of Hono's project templates. Select bun when prompted for a template.
sh
bun create hono myapptxt
✔ Which template do you want to use? › bun
cloned honojs/starter#main to /path/to/myapp
✔ Copied project filessh
cd myapp
bun installThen start the dev server and visit localhost:3000.
sh
bun run devRefer to Hono's guide on getting started with Bun for more information.