Skip to content

slamj1/Nowin

 
 

Repository files navigation

Nowin

Fast and scalable Owin Web Server in pure .Net 4.5 (it does not use HttpListener)

Current status is usable for testing, not for production, nobody did any security review, you have been warned. On Windows speed is better than NodeJs and in some cases even better than HttpListener.

Features it supports:

  • Http 1.0 and 1.1 clients uses SocketAsyncEventArgs in most optimal way you can found on the Internets
  • KeepAlive, untested pipelining, automatic chunked en/decoding of request and response
  • Everything strictly asynchronous and parallel automaticaly using all available cores
  • SSL using .Net SSL Stream so in theory it should be same secure
  • WebSockets in platform independent way! It buffers data so SignalR is more optimal on wire than current HttpListener on Win8.
  • Tracks currently connection counts and maximum allocated connections and allocates new as needed
  • One connection needs less than 20kb RAM and most of it is reused but never deallocated.
  • By default settings maximum size of request and response headers are 8KB.
  • Published in Nuget for easy use. No dependencies.

Sample: (uses Microsoft.Owin.Hosting nuget)

static class Program
{
    static void Main(string[] args)
    {
        var options = new StartOptions
        {
            ServerFactory = "Nowin",
            Port = 8080
        };

        using (WebApp.Start<Startup>(options))
        {
            Console.WriteLine("Running a http server on port 8080");
            Console.ReadKey();
        }
    }
}

public class Startup
{
    public void Configuration(IAppBuilder app)
    {
        app.Use(context =>
        {
            if (context.Request.Path == "/")
            {
                context.Response.ContentType = "text/plain";
                return context.Response.WriteAsync("Hello World!");
            }

            context.Response.StatusCode = 404;
            return Task.Delay(0);
        });
    }
}

Https sample using builder:

var builder = ServerBuilder.New().SetPort(8888).SetOwinApp(SomeOwinApp);
builder.SetCertificate(new X509Certificate2("certificate.pfx", "password"));
using (builder.Start())
{
    Console.WriteLine("Listening on port 8888. Enter to exit.");
    Console.ReadLine();
}

If running on OSX/Linux and MonoDevelop/Xamarin, to use the above sample please select external console in your project options by going to Options / Run / General / Run on external console

About

Owin Web Server in pure .Net

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 71.2%
  • JavaScript 27.6%
  • HTML 1.1%
  • Batchfile 0.1%