Sisk.HttpServer 0.16.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Sisk.HttpServer --version 0.16.1
NuGet\Install-Package Sisk.HttpServer -Version 0.16.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="Sisk.HttpServer" Version="0.16.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sisk.HttpServer --version 0.16.1
#r "nuget: Sisk.HttpServer, 0.16.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.
// Install Sisk.HttpServer as a Cake Addin
#addin nuget:?package=Sisk.HttpServer&version=0.16.1

// Install Sisk.HttpServer as a Cake Tool
#tool nuget:?package=Sisk.HttpServer&version=0.16.1

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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (2)

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

Package Downloads
Sisk.ServiceProvider The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package includes tools for easily porting your Sisk service.

Sisk.BasicAuth The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.16.2-beta4 0 4/24/2024
0.16.1 114 2/26/2024
0.16.0 975 1/9/2024
0.16.0-rc-5 175 1/3/2024
0.16.0-rc-4 89 12/21/2023
0.16.0-rc-3 95 12/7/2023
0.16.0-rc-2 114 11/25/2023
0.16.0-rc-1 96 11/13/2023
0.15.3.1 75 2/19/2024
0.15.3 180 11/25/2023
0.15.2 328 10/30/2023
0.15.1 171 9/30/2023
0.15.0.47 182 8/30/2023
0.15.0.47-rc 54 8/25/2023
0.15.0.46-beta 53 8/22/2023
0.15.0.42-beta 122 8/16/2023
0.15.0.6-beta 135 8/9/2023
0.15.0-beta 134 7/20/2023
0.14.0.1 200 7/18/2023
0.14.0 158 7/17/2023
0.13.1.1 158 6/10/2023
0.13.1 164 6/8/2023
0.13.0 169 5/20/2023
0.12.1 149 5/2/2023
0.12.0 162 4/29/2023
0.11.1 168 4/9/2023
0.11.0 219 3/30/2023
0.10.1 201 3/21/2023
0.10.0 201 3/15/2023
0.9.1 238 3/2/2023
0.9.0 225 2/22/2023
0.8.9 233 2/14/2023
0.8.8 245 2/8/2023
0.8.6 277 2/2/2023
0.8.5 263 2/1/2023
0.8.4 281 1/31/2023
0.8.3 271 1/26/2023
0.8.2 307 1/10/2023
0.8.1 291 1/7/2023
0.8.0 290 1/6/2023
0.7.5 268 12/28/2022
0.7.4 297 12/27/2022
0.7.3 278 12/26/2022
0.7.2 298 12/22/2022
0.7.1 286 12/21/2022
0.7.0 297 12/21/2022
0.6.4 277 12/13/2022
0.6.3 302 12/11/2022
0.6.2 310 12/11/2022
0.6.1 284 12/10/2022
0.6.0 294 12/9/2022
0.5.0 338 11/16/2022
0.4.8 343 10/30/2022
0.4.6 363 10/27/2022
0.4.1 384 10/19/2022
0.4.0 375 10/18/2022
0.3.1 391 10/15/2022
0.3.0 407 10/15/2022