Skip to content
This repository was archived by the owner on Dec 27, 2021. It is now read-only.

vmichalak/Hermes.Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Logo of Hermes.net

Hermes.Net

Fast & Minimalist Web Server Framework for Microsoft Universal Platform

class HelloWorldMiddleware : IMiddleware
{
	public async Task Run(HttpContext context)
	{
		context.Response.Send("Hello World");
	}
}
HttpServer server = new HttpServer();

server.AddGetRoute("/", new HelloWorldMiddleware());

server.Listen(port);

Installation

To install Hermes.Net, run the following command in the Package Manager Console.

Install-Package HermesNet -Pre

In your project you need to activate capabilities :

* Internet (Client & Server)
* Private Networks (Client & Server)

Features

* Run in a Universal App (Windows 10 Desktop, Mobile, IoT)
* Robust Routing

People

The current lead maintainer is [Valentin Michalak] (https://github.com/vmichalak)

Licence

MIT

About

Fast & Minimalist Web Server Framework for Microsoft Universal Platform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages