index.ts
Raw
1import { Elysia } from "elysia";
2
3const app = new Elysia().get("/", () => "Hello Elysia").listen(3000);
4
5console.log(
6 `🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`
7);
8