Fast
Minimalist web framework for Deno.
import { serve } from "https://deno.land/std@0.143.0/http/server.ts";
import { Application } from "https://deno.land/x/fast/mod.ts";
const app = new Application();
app.get("/", () => {
return new Response("Hello, World!");
});
await serve(app.handle);