Initial commit (via bun create)

This commit is contained in:
2025-04-15 14:16:39 +05:00
commit ca5620f1d0
5 changed files with 182 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { Elysia } from "elysia";
const app = new Elysia().get("/", () => "Hello Elysia").listen(3000);
console.log(
`🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`
);