Skip to main content

windport

A small, dependencyless, web server/router for Deno

import { Application } from "https://deno.land/x/windport/mod.ts";

const app = new Application()

app.route({
    method: "GET",
    path: "/",
    fn: () => new Response("Hello World")
});

app.start(8080);