aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jiri Spac <capajj@gmail.com> 2023-05-26 07:04:07 +0200
committerGravatar GitHub <noreply@github.com> 2023-05-25 22:04:07 -0700
commit1f7ad0cc37a07e783a386a7ddd68993f12b735eb (patch)
tree35a1237def89c98ee7db1acc3a1abe238b5bc7e6
parent4c566f56c1412201f9de50804960cb0b79b7af4a (diff)
downloadbun-1f7ad0cc37a07e783a386a7ddd68993f12b735eb.tar.gz
bun-1f7ad0cc37a07e783a386a7ddd68993f12b735eb.tar.zst
bun-1f7ad0cc37a07e783a386a7ddd68993f12b735eb.zip
add a bit more info on Elysia (#3062)
-rw-r--r--docs/ecosystem/elysia.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/ecosystem/elysia.md b/docs/ecosystem/elysia.md
index d011e3f0c..b5225e6ce 100644
--- a/docs/ecosystem/elysia.md
+++ b/docs/ecosystem/elysia.md
@@ -1,4 +1,7 @@
-[Elysia](https://elysiajs.com) is a Bun-first web framework that takes full advantage of Bun's HTTP, file system, and hot reloading APIs.
+[Elysia](https://elysiajs.com) is a Bun-first performance focused web framework that takes full advantage of Bun's HTTP, file system, and hot reloading APIs.
+Designed with TypeScript in mind, you don't need to understand TypeScript to gain the benefit of TypeScript with Elysia. The library understands what you want and automatically infers the type from your code.
+
+:zap: Elysia is [one of the fastest Bun web frameworks](https://github.com/SaltyAom/bun-http-framework-benchmark)
```ts#server.ts
import { Elysia } from 'elysia'
@@ -18,4 +21,4 @@ $ 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
+Refer to the Elysia [documentation](https://elysiajs.com/quick-start.html) for more information.