Getting Started

Mage is a web framework for Deno. It allows you to build web applications with Deno and Preact.

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