Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt

Use this file to discover all available pages before exploring further.

Hono is a lightweight ultrafast web framework designed for the edge.
import { Hono } from "hono";
const app = new Hono();

app.get("/", c => c.text("Hono!"));

export default app;
Get started with jstime create or follow Hono’s JSTime quickstart.
$ jstime create hono ./myapp
$ cd myapp
$ jstime run start