Sisk.HttpServer 1.5.0

Prefix Reserved
dotnet add package Sisk.HttpServer --version 1.5.0
                    
NuGet\Install-Package Sisk.HttpServer -Version 1.5.0
                    
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="Sisk.HttpServer" Version="1.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sisk.HttpServer" Version="1.5.0" />
                    
Directory.Packages.props
<PackageReference Include="Sisk.HttpServer" />
                    
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 Sisk.HttpServer --version 1.5.0
                    
#r "nuget: Sisk.HttpServer, 1.5.0"
                    
#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 Sisk.HttpServer@1.5.0
                    
#: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=Sisk.HttpServer&version=1.5.0
                    
Install as a Cake Addin
#tool nuget:?package=Sisk.HttpServer&version=1.5.0
                    
Install as a Cake Tool

Sisk is a web development framework that is lightweight, agnostic, easy, simple, and robust. The perfect choice for your next project.

Documentation

You can get started with Sisk here or build the documentation repository here.

For information about release notes, changelogs and API breaking changes, see docs/Changelog.md.

The Sisk core idea is to create a service that runs on the internet and follows the pattern you define. Moreover, Sisk is a framework that adapts to how you want it to work, not the other way around.

Due to its explicit nature, its behavior is predictable. The main differentiator from ASP.NET is that Sisk can be up and running in very few lines of code, avoiding unnecessary configurations, and requiring the minimum setup to get your server working. Additionally, it does not demand any additional .NET SDK packages to develop, as the base package of .NET 6 is sufficient to start your development with Sisk.

It can handle multiple requests asynchronously, provides useful tools to manage and accelerate web development.

using Sisk.Core.Http;

class Program
{
    static async Task Main(string[] args)
    {
        using var app = HttpServer.CreateBuilder(5555).Build();

        app.Router.MapGet("/", request =>
        {
            return new HttpResponse("Hello, world!");
        });

        await app.StartAsync(); // 🚀 app is listening on http://localhost:5555/
    }
}

Main features

Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.

  • Lightweight: robust projects tested in small, low-cost, low-performance environments and got good results.
  • Open-source: the entire Sisk ecosystem is open source, and all the libraries and technologies we use must be open source as well. Sisk is entirely distributed under the MIT License, which allows the commercial development.
  • Sustainable: you are the one who makes the project, Sisk gives you the tools. Because it is open source, the community (including you) can maintain, fix bugs and improve Sisk over time.

Read More

Read more about Sisk at it's repository or website.Sisk is a web development framework that is lightweight, agnostic, easy, simple, and robust. The perfect choice for your next project.

Documentation

You can get started with Sisk here or build the documentation repository here.

For information about release notes, changelogs and API breaking changes, see docs/Changelog.md.

The Sisk core idea is to create a service that runs on the internet and follows the pattern you define. Moreover, Sisk is a framework that adapts to how you want it to work, not the other way around.

Due to its explicit nature, its behavior is predictable. The main differentiator from ASP.NET is that Sisk can be up and running in very few lines of code, avoiding unnecessary configurations, and requiring the minimum setup to get your server working. Additionally, it does not demand any additional .NET SDK packages to develop, as the base package of .NET 6 is sufficient to start your development with Sisk.

It can handle multiple requests asynchronously, provides useful tools to manage and accelerate web development.

using Sisk.Core.Http;
using Sisk.Core.Routing;

namespace myProgram;

class Program
{
    static void Main(string[] args)
    {
        var app = HttpServer.CreateBuilder();

        app.Router += new Route(RouteMethod.Get, "/", request =>
        {
            return new HttpResponse(200)
                .WithContent("Hello, world!");
        });

        app.Start();
    }
}

Main features

Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.

  • Lightweight: robust projects tested in small, low-cost, low-performance environments and got good results.
  • Open-source: the entire Sisk ecosystem is open source, and all the libraries and technologies we use must be open source as well. Sisk is entirely distributed under the MIT License, which allows the commercial development.
  • Sustainable: you are the one who makes the project, Sisk gives you the tools. Because it is open source, the community (including you) can maintain, fix bugs and improve Sisk over time.

Read More

Read more about Sisk at it's repository or website.

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 was computed.  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.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Sisk.HttpServer:

Package Downloads
Sisk.ServiceProvider

This package includes tools for easily porting your Sisk service.

Sisk.SslProxy

This package provides an experimental SSL proxy for the Sisk Framework and other .NET projects.

Sisk.IniConfiguration

This package provides an INI configuration provider for Sisk projects.

Sisk.BasicAuth

This package includes an helper for embeding basic authentication in your applications made with Sisk.

Sisk.JsonRpc

This package provides an JSON-RPC 2.0 interface for Sisk projects.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.5.0 11 8/18/2025
1.5.0-rc1 12 8/17/2025
1.5.0-beta3 134 7/7/2025
1.5.0-beta1 151 6/4/2025
1.4.3 225 5/2/2025
1.4.2 251 4/8/2025
1.4.1 552 3/29/2025
1.4.1-beta1 158 3/17/2025
1.4.0.1 324 2/10/2025
1.4.0-beta3 209 1/22/2025
1.4.0-beta2 88 1/19/2025
1.4.0-beta1 84 1/14/2025
1.3.2 190 1/2/2025
1.3.1 182 12/12/2024
1.3.0 176 11/13/2024
1.3.0-rc5 119 11/10/2024
1.3.0-rc4 96 11/9/2024
1.3.0-rc2 101 11/5/2024
1.3.0-rc 99 11/5/2024
1.2.0 174 10/29/2024
1.1.1 1,254 10/17/2024
1.1.0 282 9/22/2024
1.0.4 120 10/17/2024
1.0.3 203 9/13/2024
1.0.2 194 9/1/2024
1.0.1 193 8/28/2024
1.0.0 209 8/16/2024
1.0.0-rc8 151 8/13/2024
1.0.0-rc7 114 8/1/2024
1.0.0-rc6 92 7/24/2024
1.0.0-rc4 109 7/10/2024
1.0.0-rc3 90 7/4/2024
1.0.0-rc2 116 6/24/2024
1.0.0-rc1 126 6/7/2024
0.16.2 670 4/28/2024
0.16.2-beta4 141 4/24/2024
0.16.1 430 2/26/2024
0.16.0 2,475 1/9/2024
0.16.0-rc-5 277 1/3/2024
0.16.0-rc-4 155 12/21/2023
0.16.0-rc-3 171 12/7/2023
0.16.0-rc-2 160 11/25/2023
0.16.0-rc-1 147 11/13/2023
0.15.3.1 156 2/19/2024
0.15.3 245 11/25/2023
0.15.2 828 10/30/2023
0.15.1 242 9/30/2023
0.15.0.47 279 8/30/2023
0.15.0.47-rc 75 8/25/2023
0.15.0.46-beta 96 8/22/2023
0.15.0.42-beta 200 8/16/2023
0.15.0.6-beta 208 8/9/2023
0.15.0-beta 209 7/20/2023
0.14.0.1 269 7/18/2023
0.14.0 231 7/17/2023
0.13.1.1 244 6/10/2023
0.13.1 248 6/8/2023
0.13.0 259 5/20/2023
0.12.1 230 5/2/2023
0.12.0 248 4/29/2023
0.11.1 244 4/9/2023
0.11.0 301 3/30/2023
0.10.1 295 3/21/2023
0.10.0 276 3/15/2023
0.9.1 318 3/2/2023
0.9.0 306 2/22/2023
0.8.9 306 2/14/2023
0.8.8 323 2/8/2023
0.8.6 356 2/2/2023
0.8.5 343 2/1/2023
0.8.4 399 1/31/2023 0.8.4 is deprecated because it has critical bugs.
0.8.3 359 1/26/2023
0.8.2 392 1/10/2023
0.8.1 374 1/7/2023
0.8.0 382 1/6/2023
0.7.5 353 12/28/2022
0.7.4 388 12/27/2022
0.7.3 361 12/26/2022
0.7.2 379 12/22/2022
0.7.1 364 12/21/2022
0.7.0 379 12/21/2022
0.6.4 360 12/13/2022
0.6.3 376 12/11/2022
0.6.2 388 12/11/2022
0.6.1 360 12/10/2022
0.6.0 367 12/9/2022
0.5.0 417 11/16/2022
0.4.8 427 10/30/2022
0.4.6 445 10/27/2022
0.4.1 477 10/19/2022
0.4.0 466 10/18/2022
0.3.1 478 10/15/2022
0.3.0 488 10/15/2022