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

Hum

Simple HTTP routing library

Basic Example

import { app, Get, Hum, Resource } from "https://deno.land/x/hum@v0.0.4/mod.ts";

@Resource()
export class Hello {
  @Get("/hello")
  public async index() {
    return {
      hello: "world",
    };
  }
}

Hum({
  port: 3000,
});