blazin is a Deno web application framework. It is built directly on top of the std/http core library.
It's syntax is inspired by Express.js.
The goal of blazin is obviously to be blazin' fast, but also be hella simple. With simplicity in mind,
blazin comes with :
- A
Routercomponent - A simplified
Responsecomponent - A
Loggerto understand what's going on inside your server - Support for middlewares with the
Middlewarecomponent
Here is the simplest implementation of a hello-world in blazin
import { Blazin } from "https://raw.githubusercontent.com/delirius325/blazin/master/Blazin.ts";
const blazin = new Blazin(8000)
blazin.router.get("/", res => {
res.status(200)
.headers({"X-HelloWorld-Header": "hello-world"})
.send({message: "Hello World!" })
});
blazin.start();Simple hello world server:
See benchmark.yaml for the test configuration
Summary report @ 18:11:01(+0000) 2020-10-14
Scenarios launched: 180
Scenarios completed: 180
Requests completed: 540
Mean response/sec: 3.01
Response time (msec):
min: 0.2
max: 50
median: 0.5
p95: 1
p99: 7.9
Scenario counts:
0: 180 (100%)
Codes:
200: 540
To contribute, please refer to the CONTRIBUTING.md file.
MIT