blob: 9c1f7a1e6f3c8aa794f96991a785d5c98e64a08e (
plain)
1
2
3
4
5
6
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}`
);
|