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;

Use create-hono to get started with one of Hono’s project templates. Select jstime when prompted for a template.
$ jstimex create-hono myapp
 Which template do you want to use? jstime
cloned honojs/starter#main to /path/to/myapp
 Copied project files
$ cd myapp
$ jspm install

Then start the dev server and visit localhost:3000.
$ jstime run dev

Refer to Hono’s guide on getting started with JSTime for more information.