Skip to content

Hono

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.

Terminal window
$ jstime create hono ./myapp
$ cd myapp
$ jstime run start