Skip to main content
Module

x/fast/README.md

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

Fast

Small (<200L) web framework.

test deno doc

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("/", () => "Hello, World!");

await serve(app.handle);