Skip to main content
Module

x/fast/README.md

Small web framework with near-native performance.
Go to Latest
File

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();