aboutsummaryrefslogtreecommitdiff
path: root/docs/ecosystem
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ecosystem')
-rw-r--r--docs/ecosystem/elysia.md21
-rw-r--r--docs/ecosystem/hono.md17
2 files changed, 38 insertions, 0 deletions
diff --git a/docs/ecosystem/elysia.md b/docs/ecosystem/elysia.md
new file mode 100644
index 000000000..d011e3f0c
--- /dev/null
+++ b/docs/ecosystem/elysia.md
@@ -0,0 +1,21 @@
+[Elysia](https://elysiajs.com) is a Bun-first web framework that takes full advantage of Bun's HTTP, file system, and hot reloading APIs.
+
+```ts#server.ts
+import { Elysia } from 'elysia'
+
+const app = new Elysia()
+ .get('/', () => 'Hello Elysia')
+ .listen(8080)
+
+console.log(`🦊 Elysia is running at on port ${app.server.port}...`)
+```
+
+Get started with `bun create`.
+
+```bash
+$ bun create elysia ./myapp
+$ cd myapp
+$ bun run dev
+```
+
+Refer to the Elysia [documentation](https://elysiajs.com/quick-start.html) for more information. \ No newline at end of file
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
+```