Skip to main content

Denoot — Web Server

Denoot logo

Denoot is a light weight, high performance, express.js style web server/router for Deno


Getting Started

Create server.ts

import Denoot, { Request, Response } from "https://deno.land/x/denoot/mod.ts";

const app = Denoot.app(3000);

app.get("/", (req: Request, res: Response) => {
    res.send("Hello World!");
});

Then start the server:

deno run --allow-net --unstable server.ts

After starting the server open localhost:3000

Documentation

View the full documentation here.