Mage

Build web applications with Deno and Preact

import { MageApp, StatusCode } from "@mage/server";

const app = new MageApp();

app.get("/", (context) => {
  context.render(StatusCode.OK, <h1>Hello, World!</h1>);
});

app.post("/", (context) => {
  context.text(StatusCode.OK, "Hello, World!");
});

Deno.serve(app.build());