Skip to main content
The Deno 2 Release Candidate is here
Learn more

MiddleStack

The really middleware web framework

Example

import {route, middlestack} from "https://deno.land/x/middlestack/mod.ts";;

Deno.serve(middlestack([
    route('GET', '/', async (req: Request) => {
        return new Response("Hello world!")
    }),
]))```