Skip to main content

A lightweight, high-performance and customizable web framework for Deno.

tag nest badge

www.DeliGenius.com

Features

  • 🐤 Light weight (11kb)
  • 🚅 Extremely high performance (97.74% of deno http module)
  • 🤸‍♂️ Body parser middleware option
  • ✔️ Gentle error handling

Documentation

Please check out Deligenius.com website

Hello World example

  1. Use your favourite editor, copy below to app.ts
// ./app.ts
import { Application } from "https://x.nest.land/deligenius@1.0.2/mod.ts";

let app = new Application({ port: 8000 }).listen();

app.use((ctx) => {
  ctx.send("Hello World!");
});
  1. Run program with
> deno run --allow-net ./app.ts

Contributors

@gjuoun