I know that similar questions have been asked, but most of them are out of date. So here we go again :). I need to implement a complete REST service layer for our application. T
Been playing with Nancy myself lately and I'm also considering Manos de Mono. Here's the an example from the home page on Nancy.
public class HelloModule : NancyModule { public HelloModule() { Get["/"] = parameters => "Hello World"; } }