Skip to content
/ denoot Public

Web server for Deno. Easily route HTTP requests with Denoot http-server.

Notifications You must be signed in to change notification settings

Denoot/denoot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 from "https://deno.land/x/denoot/mod.ts";

const app = Denoot.app(3000);

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

Then start the server:

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

After starting open localhost:3000

View the full documentation here.