x/fast
Small web framework.
import fast from "https://deno.land/x/fast/mod.ts"; const app = fast(); app.get("/", () => "Hello, World!"); await app.serve()