Middleware

Middlewares are everything in Mage. You register middleware to handle requests and build the response.

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