Wednesday, January 23, 2013

Nancy - Lightweight Web Framework for .net

nancyfx.org
Nancy - Lightweight Web Framework for .net

Inspired by super-simple to use Sinatra web framework in Ruby,
Nancy is a simple .net web platform. How simple?
This is a complete "web app". And no dependencies!
public class SampleModule : Nancy.NancyModule {
    public SampleModule() {
        Get["/"] = _ => "Hello World!";
    }
}
podcast interviews: