Skip to content

danteissaias/fast

Repository files navigation

Fast

Minimalist web framework for Deno

test deno doc deno module

import { serve } from "https://deno.land/std/http/server.ts";
import { Application } from "https://deno.land/x/fast/mod.ts";

const app = new Application();

app.get("/", () => new Response("Hello, World!"));

await serve(app.handle);