Sisk.HttpServer 0.6.2

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 version of this package available.
See the version list below for details.
dotnet add package Sisk.HttpServer --version 0.6.2
NuGet\Install-Package Sisk.HttpServer -Version 0.6.2
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.6.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sisk.HttpServer --version 0.6.2
#r "nuget: Sisk.HttpServer, 0.6.2"
#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.6.2

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

<p align="center"> <img width="100%" height="auto" src="https://i.imgur.com/RCljAQs.png"> </p>

Nuget

Sisk is a powerful micro-framework for building powerful Restful web APIs. It was written using .NET 6 and Microsoft-HTTPAPI/2.0 as their HTTP Engines. Currently, this micro-framework is suitable for building restful APIs, in a structured and object-oriented way. There is no native support for frontend rendering, templates or database connection. You can extend it as you see fit.

Features

  • Ultra fast response/second average
  • Support to operating system's native WebSocket control
  • Sustainable and maintainable
  • Abstract of usage models
  • Database-agnostic
  • Compatible implementation with *nix, Mac OS and Windows
  • Asynchronous
  • Request handling before callback support
  • Built-in configurable rate limiter
  • Configurable error handling
  • Support to log access logs
  • Easy Cross-Origin Resource Sharing setup
  • Written in C# using the Microsoft-HTTPAPI/2.0 (same as IIS)

Note: this micro-framework only works for HTTP and not HTTPS. To use it over TLS/HTTPS, use a reverse proxy.

Documentation

You can access the Sisk documentation here.

Installation

You can install the latest release from Nuget:

PM> dotnet add package Sisk.HttpServer

You can see more info in the docs.

And then you can start building your own HTTP api, like this:

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

namespace Sisk.Server
{
    internal class Program
    {
        public static HttpServer? Server { get; set; }
        public static Router? Router { get; set; }

        static void Main(string[] args)
        {
            Router = new();
            Router.SetRoute(RouteMethod.Get, "/", (req) => 
            {
                return req.CreateOkResponse("Hello, world!");
            });

            HttpServerConfiguration config = new HttpServerConfiguration();
            config.ListeningPort = 7488;

            Server = new(Router, config)
            {
                Verbose = true
            };

            Console.WriteLine("Sisk is listening on HTTP localhost:{0}", config.ListeningPort);
            Server.Start();

            Console.ReadKey();
        }
    }
}
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 was computed.  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 was computed.  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.

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
1.0.0-rc2 55 6/24/2024
1.0.0-rc1 78 6/7/2024
0.16.2 255 4/28/2024
0.16.2-beta4 92 4/24/2024
0.16.1 144 2/26/2024
0.16.0 1,346 1/9/2024
0.16.0-rc-5 205 1/3/2024
0.16.0-rc-4 91 12/21/2023
0.16.0-rc-3 96 12/7/2023
0.16.0-rc-2 116 11/25/2023
0.16.0-rc-1 97 11/13/2023
0.15.3.1 85 2/19/2024
0.15.3 185 11/25/2023
0.15.2 431 10/30/2023
0.15.1 175 9/30/2023
0.15.0.47 189 8/30/2023
0.15.0.47-rc 55 8/25/2023
0.15.0.46-beta 58 8/22/2023
0.15.0.42-beta 126 8/16/2023
0.15.0.6-beta 136 8/9/2023
0.15.0-beta 136 7/20/2023
0.14.0.1 207 7/18/2023
0.14.0 161 7/17/2023
0.13.1.1 162 6/10/2023
0.13.1 167 6/8/2023
0.13.0 173 5/20/2023
0.12.1 153 5/2/2023
0.12.0 166 4/29/2023
0.11.1 172 4/9/2023
0.11.0 224 3/30/2023
0.10.1 205 3/21/2023
0.10.0 204 3/15/2023
0.9.1 249 3/2/2023
0.9.0 229 2/22/2023
0.8.9 237 2/14/2023
0.8.8 248 2/8/2023
0.8.6 283 2/2/2023
0.8.5 269 2/1/2023
0.8.4 289 1/31/2023
0.8.3 277 1/26/2023
0.8.2 311 1/10/2023
0.8.1 298 1/7/2023
0.8.0 296 1/6/2023
0.7.5 272 12/28/2022
0.7.4 300 12/27/2022
0.7.3 282 12/26/2022
0.7.2 301 12/22/2022
0.7.1 289 12/21/2022
0.7.0 306 12/21/2022
0.6.4 281 12/13/2022
0.6.3 305 12/11/2022
0.6.2 314 12/11/2022
0.6.1 287 12/10/2022
0.6.0 297 12/9/2022
0.5.0 340 11/16/2022
0.4.8 348 10/30/2022
0.4.6 364 10/27/2022
0.4.1 385 10/19/2022
0.4.0 379 10/18/2022
0.3.1 402 10/15/2022
0.3.0 412 10/15/2022