TINYFOX
CONCISE AND FAST WEB FRAMEWORK
Tinyfox is an ultra-light and ultra-fast self-hosted .NET web framework. It supports WebApi, WebSocket, and "Dynamic HTML" technologies, making it an excellent framework for quickly creating web service programs.
Example:

    using Tinyfox.WebApiEngine;
    using Tinyfox.WebApiEngine.Results;

    // Configure routing parameters
    var rt = (HttpRoute)Fox.Router;
    rt.GET["/"] = _ => new TextResult("Hello, World.");
    rt.GET["/api/values/{value}"] = c => {
        var v = c.Request["value"];
        return new TextResult($"value is '{v}'");
    };

    // Start and wait for exit
    Fox.Start();
    Fox.WaitExit();

    // After the program is launched ...
    // Access the "http://localhost:8088/" with a browser
    // Or access the "http://localhost:8088/api/values/100"

For more details, please visit:
Tinyfox Development Manual

QQ Group: 963776462

Developer Email: j66x@163.com