Skip to content

danteissaias/fast

Repository files navigation

Fast

Small web framework with near-native performance.

test deno doc

import fast from "https://deno.land/x/fast/mod.ts";

const app = fast();

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

await app.serve()