Repository
Current version released
3 years ago
Dependencies
std
Versions
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);