Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
import { Hono } from "hono"; const app = new Hono(); app.get("/", c => c.text("Hono!")); export default app;
create-hono
bun
bun create hono myapp
✔ 你想使用哪个模板? › bun 已克隆 honojs/starter#main 到 /path/to/myapp ✔ 已复制项目文件
cd myapp bun install
bun run dev