aboutsummaryrefslogtreecommitdiff
path: root/docs/ecosystem/hono.md
diff options
context:
space:
mode:
authorGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-02-24 17:48:49 -0800
committerGravatar GitHub <noreply@github.com> 2023-02-24 17:48:49 -0800
commit0ecd773081c8254474b8c756887d19409aa13090 (patch)
treeb277ae6f367e35fa83cbeec2ebac8034f1f9722c /docs/ecosystem/hono.md
parentc72c2c2338f648544f1a35ba9100a9fe4ad46aee (diff)
downloadbun-0ecd773081c8254474b8c756887d19409aa13090.tar.gz
bun-0ecd773081c8254474b8c756887d19409aa13090.tar.zst
bun-0ecd773081c8254474b8c756887d19409aa13090.zip
Docs (#2170)
* Add hono and elysia * Update elysia and add coming soon * Fix typo * Add back awesome
Diffstat (limited to 'docs/ecosystem/hono.md')
-rw-r--r--docs/ecosystem/hono.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/ecosystem/hono.md b/docs/ecosystem/hono.md
new file mode 100644
index 000000000..d63975e48
--- /dev/null
+++ b/docs/ecosystem/hono.md
@@ -0,0 +1,17 @@
+[Hono](https://github.com/honojs/hono) is a lightwaight 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
+```