RHttpServer 3.1.0
See the version list below for details.
dotnet add package RHttpServer --version 3.1.0
NuGet\Install-Package RHttpServer -Version 3.1.0
<PackageReference Include="RHttpServer" Version="3.1.0" />
paket add RHttpServer --version 3.1.0
#r "nuget: RHttpServer, 3.1.0"
// Install RHttpServer as a Cake Addin #addin nuget:?package=RHttpServer&version=3.1.0 // Install RHttpServer as a Cake Tool #tool nuget:?package=RHttpServer&version=3.1.0
RedHttpServer
Cross-platform http server framework with websocket support
A Http web server framework built on ASP.NET Core and Kestrel, but with an API inspired by the simplicity of express.js
Installation
RedHttpServer can be installed from NuGet: Install-Package RHttpServer
Middleware and plugins
RedHttpServer is created to be easy to build on top of. The server supports both middleware modules and extension modules, and offers a method to register these.
I have created a couple already; three are inbuilt, but can easily be replaced:
- NewtonsoftJsonConverter - uses Newtonsoft.Json
- XmlConverter - uses System.Xml.Serialization
- BodyParser - uses both the Json- and Xml converter to parse request body to an object, depending on content-type.
And three more split out into separate projects:
- CookieSessions simple session management middleware that uses cookies with authentication tokens.
- EcsRenderer simple template rendering extension. See more info about the format by clicking the link.
- CommonMarkRenderer simple CommonMark/Markdown renderer extension - uses CommonMark.NET
Example
// We serve static files, such as index.html from the 'public' directory
var server = new RedHttpServer(5000, "public");
// URL param demo
server.Get("/:param1/:paramtwo/:somethingthird", async (req, res) =>
{
await res.SendString($"URL: {req.Parameters["param1"]} / {req.Parameters["paramtwo"]} / {req.Parameters["somethingthird"]}");
});
// Redirect to page on same host
server.Get("/redirect", async (req, res) =>
{
await res.Redirect("/redirect/test/here");
});
// Save uploaded file from request body
Directory.CreateDirectory("uploads");
server.Post("/upload", async (req, res) =>
{
if (await req.SaveFiles("uploads"))
await res.SendString("OK");
else
await res.SendString("Error", status: HttpStatusCode.NotAcceptable);
});
server.Get("/file", async (req, res) =>
{
await res.SendFile("testimg.jpeg");
});
// Handling formdata from client
server.Post("/formdata", async (req, res) =>
{
var form = await req.GetFormDataAsync();
await res.SendString("Hello " + form["firstname"]);
});
// Using url queries to generate an answer
server.Get("/hello", async (req, res) =>
{
var queries = req.Queries;
await res.SendString($"Hello {queries["firstname"]} {queries["lastname"]}, have a nice day");
});
// WebSocket echo server
server.WebSocket("/echo", async (req, wsd) =>
{
await wsd.SendText("Welcome to the echo test server");
wsd.OnTextReceived += (sender, eventArgs) =>
{
wsd.SendText("you sent: " + eventArgs.Text);
};
});
server.Start();
Why?
Because I like C# and .NET Core, but very often need a simple yet powerful web server for some project. Express.js is concise and simple to work with, so the API is inspired by that.
License
RedHttpServer is released under MIT license, so it is free to use, even in commercial projects.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. net9.0 was computed. 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. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.0
- Microsoft.AspNetCore.Cors (>= 2.0.0)
- Microsoft.AspNetCore.Routing (>= 2.0.0)
- Microsoft.AspNetCore.Server.Kestrel (>= 2.0.0)
- Microsoft.AspNetCore.StaticFiles (>= 2.0.0)
- Microsoft.AspNetCore.WebSockets (>= 2.0.0)
- Newtonsoft.Json (>= 11.0.1)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on RHttpServer:
Package | Downloads |
---|---|
Red.CookieSessions
Simple session management middleware for RedHttpServer. Uses cookies with authentication tokens |
|
Red.JwtSessions
Package Description |
|
Butterfly.Web.RedHttpServer
Implementation of Butterfly.Web for RedHttpServer (see https://github.com/rosenbjerg/Red) |
|
Red.HandlebarsRenderer
Extension for Red for rendering Handlebars templates as responses |
|
Red.EcsRenderer
Extension for Red for rendering .ecs files |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
5.2.1 | 11,827 | 3/16/2020 | |
5.2.0 | 1,554 | 3/1/2020 | |
5.1.0 | 3,069 | 2/22/2020 | |
5.0.0 | 1,475 | 2/21/2020 | |
4.0.2 | 13,471 | 9/23/2019 | |
4.0.1 | 1,464 | 9/16/2019 | |
4.0.0 | 4,775 | 4/29/2019 | |
3.5.2 | 5,973 | 9/12/2018 | |
3.5.1 | 1,667 | 9/7/2018 | |
3.5.0 | 1,838 | 8/17/2018 | |
3.4.0 | 1,739 | 8/15/2018 | |
3.3.0 | 1,797 | 8/13/2018 | |
3.2.2 | 1,851 | 8/6/2018 | |
3.2.1 | 2,057 | 6/27/2018 | |
3.2.0 | 2,697 | 6/26/2018 | |
3.1.0 | 2,866 | 5/20/2018 | |
3.0.0 | 5,788 | 3/26/2018 | |
2.0.5 | 2,853 | 10/16/2017 | |
2.0.4 | 1,934 | 10/16/2017 | |
2.0.3 | 2,468 | 5/13/2017 | |
2.0.2 | 2,527 | 4/27/2017 | |
2.0.1 | 2,522 | 4/23/2017 | |
2.0.0 | 2,552 | 4/12/2017 | |
1.0.4.4 | 1,949 | 1/25/2017 | |
1.0.4.3 | 2,017 | 1/24/2017 | |
1.0.4.2 | 1,974 | 1/9/2017 | |
1.0.4.1 | 2,230 | 12/12/2016 | |
1.0.4 | 2,170 | 12/12/2016 | |
1.0.3.9 | 1,966 | 12/9/2016 | |
1.0.3.8 | 1,889 | 12/3/2016 | |
1.0.3.7 | 2,268 | 11/8/2016 | |
1.0.3.6 | 1,967 | 10/25/2016 | |
1.0.3.5 | 1,890 | 10/13/2016 | |
1.0.3.4 | 2,075 | 10/5/2016 | |
1.0.3.3 | 1,980 | 9/27/2016 | |
1.0.3.2 | 2,023 | 9/25/2016 | |
1.0.3.1 | 2,094 | 9/22/2016 | |
1.0.3 | 2,119 | 9/22/2016 | |
1.0.2.11 | 2,230 | 9/17/2016 | |
1.0.2.10 | 1,989 | 9/14/2016 | |
1.0.2.9 | 1,909 | 9/14/2016 | |
1.0.2.8 | 2,273 | 9/13/2016 | |
1.0.2.7 | 1,885 | 9/12/2016 | |
1.0.2.6 | 1,917 | 9/12/2016 | |
1.0.2.5 | 1,922 | 9/12/2016 | |
1.0.2.4 | 2,224 | 9/11/2016 | |
1.0.2.3 | 1,879 | 9/11/2016 |
Minor change to IRedWebSocketMiddleware