Hunt Framework 3.1.0 Released, Web Framework for DLang!

Greatsam4sure greatsam4sure at yahoo.com
Fri May 22 08:44:10 UTC 2020


On Thursday, 21 May 2020 at 16:13:57 UTC, zoujiaqing wrote:
> Hunt Framework is a full stack Web framework based on DLang 
> language.
>
> Designed for rapid development of Web servers, similar PHP's 
> Laravel、Java's Spring、Python's Django!
>
>  ## This major update is as follows:
>
>  1. safety - related GET parameter test
>  2. improve the worker thread, add WokerGroup Modularization
>  3. the underlying library Stability IO
>  4. improved Windows platform
>
>  ## Parameter Check Example Code:
>
> ```D
>     classUserController : Controller
>     {
>     ...
>         @Actionstring user(@Min(1) uint id)
>         {
>             auto result = request.valid();
>             if (!result.isValid())
>             {
>                string[string] messages = result.messages();
>                 // error
>             }
>
>             return null;
>         }
>     }
> ```


A holistic tutorial will help this framework more. The docs are 
not helpful to me. This is the reason people use vibe because of 
the better docs, tutorial, and book




More information about the Digitalmars-d-announce mailing list