Archttp 1.0.0 released! Simple, Flexible, Performance! DLang web framework.

zoujiaqing zoujiaqing at gmail.com
Sun May 22 21:08:24 UTC 2022


Archttp is a Web server framework written in D programming 
language with Golang concurrency capability. Archttp has an 
ExpressJS-like API design, which makes it extremely easy to use.

## Archttp's core focus is on three metrics:
  1. Simple
  2. Flexible
  3. Performance

## Document for Quick Start
https://github.com/kerisy/archttp/blob/main/docs/QuickStart.md

## Usage sample code
```D
import archttp;

void main()
{
     auto app = new Archttp;

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

     app.listen(8080);
}
```

## Source Code
https://github.com/kerisy/archttp






More information about the Digitalmars-d-announce mailing list