An open API service indexing awesome lists of open source software.

https://github.com/denoot/denoot

Web server for Deno. Easily route HTTP requests with Denoot http-server.
https://github.com/denoot/denoot

deno http-server middleware router server-side web web-server webframework

Last synced: 4 months ago
JSON representation

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

Awesome Lists containing this project

README

          



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`
```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:
```sh
deno run --allow-net --unstable server.ts
```
After starting open [localhost:3000](http://localhost:3000)

## [Documentation](https://denoot.dev/creating-denoot-app)
View the full documentation [here](https://denoot.dev/creating-denoot-app).