aboutsummaryrefslogtreecommitdiff
path: root/docs/ecosystem/hono.md
blob: e96fbc5c910f2517d46e92bcfd140c55779b413a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[Hono](https://github.com/honojs/hono) is a lightweight ultrafast web framework designed for the edge.

```ts
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](https://hono.dev/getting-started/bun).

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