diff options
Diffstat (limited to 'docs/ecosystem/elysia.md')
-rw-r--r-- | docs/ecosystem/elysia.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ecosystem/elysia.md b/docs/ecosystem/elysia.md index b5225e6ce..60dafe981 100644 --- a/docs/ecosystem/elysia.md +++ b/docs/ecosystem/elysia.md @@ -1,7 +1,7 @@ [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) +⚡️ Elysia is [one of the fastest Bun web frameworks](https://github.com/SaltyAom/bun-http-framework-benchmark) ```ts#server.ts import { Elysia } from 'elysia' @@ -9,7 +9,7 @@ import { Elysia } from 'elysia' const app = new Elysia() .get('/', () => 'Hello Elysia') .listen(8080) - + console.log(`🦊 Elysia is running at on port ${app.server.port}...`) ``` |