Archttp 1.0.0 released! Simple, Flexible, Performance! DLang web framework.
mw
mingwu at gmail.com
Sun May 22 23:38:50 UTC 2022
On Sunday, 22 May 2022 at 21:08:24 UTC, zoujiaqing wrote:
> 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
How does this lib differ from your hunt lib? different design
goals? Do you want to give a comparison summary?
More information about the Digitalmars-d-announce
mailing list