mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
---
|
|
title: Build an HTTP server using Elysia and Bun
|
|
sidebarTitle: Elysia with Bun
|
|
mode: center
|
|
---
|
|
|
|
[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. Get started with `bun create`.
|
|
|
|
```bash terminal icon="terminal"
|
|
bun create elysia myapp
|
|
cd myapp
|
|
bun run dev
|
|
```
|
|
|
|
---
|
|
|
|
To define a simple HTTP route and start a server with Elysia:
|
|
|
|
```ts server.ts icon="/icons/typescript.svg"
|
|
import { Elysia } from "elysia";
|
|
|
|
const app = new Elysia().get("/", () => "Hello Elysia").listen(8080);
|
|
|
|
console.log(`🦊 Elysia is running at on port ${app.server?.port}...`);
|
|
```
|
|
|
|
---
|
|
|
|
Elysia is a full-featured server framework with Express-like syntax, type inference, middleware, file uploads, and plugins for JWT authentication, tRPC, and more. It's also is one of the [fastest Bun web frameworks](https://github.com/SaltyAom/bun-http-framework-benchmark).
|
|
|
|
Refer to the Elysia [documentation](https://elysiajs.com/quick-start.html) for more information.
|