Skip to main content
Module

x/fast/README.md

Deno web framework with almost zero overhead.
Go to Latest
File

Fast

Deno web framework with almost zero overhead.

test deno doc codecov

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

const app = fast();

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

await app.serve();