![]() |
VOOZH | about |
dotnet add package Sisk.HttpServer --version 1.6.2
NuGet\Install-Package Sisk.HttpServer -Version 1.6.2
<PackageReference Include="Sisk.HttpServer" Version="1.6.2" />
<PackageVersion Include="Sisk.HttpServer" Version="1.6.2" />Directory.Packages.props
<PackageReference Include="Sisk.HttpServer" />Project file
paket add Sisk.HttpServer --version 1.6.2
#r "nuget: Sisk.HttpServer, 1.6.2"
#:package Sisk.HttpServer@1.6.2
#addin nuget:?package=Sisk.HttpServer&version=1.6.2Install as a Cake Addin
#tool nuget:?package=Sisk.HttpServer&version=1.6.2Install 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.
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/
}
}
Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.
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.
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();
}
}
Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.
Read more about Sisk at it's repository or website.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on Sisk.HttpServer:
| Package | Downloads |
|---|---|
|
Sisk.IniConfiguration
INI-backed configuration provider for Sisk applications, with typed loading support built on the Sisk.IniConfiguration.Core parser. |
|
|
Sisk.Cadente.CoreEngine
Sisk engine integration for Cadente, binding the managed HTTP/1.1 host to Sisk's request pipeline and response model. |
|
|
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.BasicAuth
Basic authentication helpers for Sisk applications, including request validation utilities for protecting routes with HTTP credentials. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.6.3-rc1 | 53 | 6/16/2026 |
| 1.6.3-beta1 | 98 | 6/2/2026 |
| 1.6.2 | 186 | 4/18/2026 |
| 1.6.1 | 685 | 12/24/2025 |
| 1.6.0 | 327 | 12/16/2025 |
| 1.6.0-beta7 | 227 | 11/26/2025 |
| 1.6.0-beta5 | 437 | 11/19/2025 |
| 1.6.0-beta4 | 176 | 11/7/2025 |
| 1.6.0-beta3 | 238 | 11/6/2025 |
| 1.6.0-beta2 | 238 | 11/3/2025 |
| 1.6.0-beta1 | 157 | 11/1/2025 |
| 1.5.2 | 520 | 10/9/2025 |
| 1.5.1 | 315 | 9/8/2025 |
| 1.5.0 | 267 | 8/18/2025 |
| 1.5.0-rc1 | 239 | 8/17/2025 |
| 1.5.0-beta3 | 232 | 7/7/2025 |
| 1.5.0-beta1 | 256 | 6/4/2025 |
| 1.4.3 | 387 | 5/2/2025 |
| 1.4.2 | 623 | 4/8/2025 |
| 1.4.1 | 1,672 | 3/29/2025 |