SimpleW 26.0.1

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package SimpleW --version 26.0.1
                    
NuGet\Install-Package SimpleW -Version 26.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SimpleW" Version="26.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SimpleW" Version="26.0.1" />
                    
Directory.Packages.props
<PackageReference Include="SimpleW" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SimpleW --version 26.0.1
                    
#r "nuget: SimpleW, 26.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SimpleW@26.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SimpleW&version=26.0.1
                    
Install as a Cake Addin
#tool nuget:?package=SimpleW&version=26.0.1
                    
Install as a Cake Tool

SimpleW

website

NuGet Package NuGet Downloads License <br/> Linux MacOS Windows (Visual Studio)

Getting Started

The minimal API

using System;
using System.Net;
using SimpleW;
using SimpleW.Observability;

namespace Sample {
    class Program {

        static async Task Main() {

            // debug log
            Log.SetSink(Log.ConsoleWriteLine, LogLevel.Debug);

            // listen to all IPs port 2015
            var server = new SimpleWServer(IPAddress.Any, 2015);

            // minimal api
            server.MapGet("/api/test", () => {
                return new { message = "Hello World !" };
            });

            // run server
            await server.RunAsync();
        }
    }

}

Documentation

To check out docs, visit simplew.net.

Changelog

Detailed changes for each release are documented in the CHANGELOG.

Contribution

Feel free to report issue.

License

This library is under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (22)

Showing the top 5 NuGet packages that depend on SimpleW:

Package Downloads
SimpleW.Newtonsoft

Newtonsoft.Json integration for SimpleW.

SimpleW.JsonEngine.Newtonsoft

Newtonsoft.Json integration for SimpleW.

SimpleW.Helper.Hosting

Provides integration between SimpleW and Microsoft.Extensions.Hosting. Allows running a SimpleW server as a Generic Host using the standard .NET hosting model (configuration, logging, lifetime, and dependency injection).

SimpleW.Service.Firewall

Provides IP-based filtering, rate limiting, connection rules and security policies to protect your server from unwanted or abusive traffic for SimpleW.

SimpleW.Service.Chaos

Chaos engineering module for SimpleW to simulate HTTP errors, latency, and connection failures.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on SimpleW:

Repository Stars
MDA2AV/HttpArena
The most complete HTTP open source benchmarking platform. Don't just say you're fast, prove it.
Version Downloads Last Updated
26.1.0-beta.20260825-2076 47 8/25/2026
26.1.0-beta.20260824-2068 118 8/24/2026
26.1.0-beta.20260824-2065 49 8/24/2026
26.1.0-alpha.20260823-2061 190 8/23/2026
26.1.0-alpha.20260822-2060 49 8/22/2026
26.1.0-alpha.20260821-2058 216 8/21/2026
26.1.0-alpha.20260821-2057 50 8/21/2026
26.1.0-alpha.20260813-2037 145 8/13/2026
26.1.0-alpha.20260812-2015 121 8/12/2026
26.1.0-alpha.20260717-1999 111 7/17/2026
26.1.0-alpha.20260716-1995 67 7/16/2026
26.1.0-alpha.20260715-1993 57 7/15/2026
26.1.0-alpha.20260712-1984 73 7/12/2026
26.1.0-alpha.20260712-1966 85 7/12/2026
26.0.1 1,493 6/19/2026
Loading failed