Skip to main content
The Deno 2 Release Candidate is here
Learn more

Nori

A powerless web framework for Deno.

Usage

import { Nori } from "https://raw.githubusercontent.com/t-iku/nori/master/src/nori.ts";

const app = new Nori();

app.get("/", () => {
  return new Response("Nori kutte NoriNori");
});

app.serve(8080);