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