/baku

A router for Deno

Primary LanguageTypeScriptMIT LicenseMIT

Important

This project is still experimental. The API might be changed.

Baku

Baku - [漠] means pico in Sinosphere is a router using URLPattern for Deno.

This is created from Pico.

import { Router } from "https://deno.land/x/baku/mod.ts";

const router = Router();
router.get("/", () => new Response("Hello Baku!"));

Deno.serve(router.handle);

Documentation

Visit our docs.

Related