Files
bun.sh/docs/ecosystem/hono.md
Colin McDonnell 404b90badc Add ecosystem guides (#3847)
* Add ecosystem guides

* Update titles

* Rename stric

* Add unlink and fetch guides

* Add formdata guide

* Tweak title

* Moar
2023-07-31 12:20:23 -07:00

395 B

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 bun create or follow Hono's Bun quickstart.

$ bun create hono ./myapp
$ cd myapp
$ bun run start