Skip to main content
Deno 2 is finally here 🎉️
Learn more

hyperserve

Part of the hyperactive project. A lean server library that’s functional by design and integrates seamlessly with hyperactive itself.

Getting started

import { http, router, get } from "https://deno.land/x/hyperserve";

const server = http({ port: 3000 }, router(
    get("/", ctx => ctx.respond("Hello world")),
    ...
));

server.start();
console.log("Listening on port", 3000);