Microsoft MVC bloggers

Sponsors

Hanselminutes Podcast 270 - Nancy, Sinatra and the Explosion of .NET Micro Web Frameworks with Andreas Håkansson

Scott chats with open source developer Andreas Håkansson about his .NET micro web framework called Nancy which is inspired by a Ruby framework called Sinatra. Why do we need frameworks like this? What kinds of sites and services can they support and how do they relate to ASP.NET? Links from the Show Nancy - Google Group NancyFx Home Page Nancy on GitHub - A Sinatra inspired web framework for the .NET platform Andreas on Twitter @thecodejunkie Introducing Nancy, a lightweight web framework inspired by Sinatra Nancy - Video Presentation Hello World Example public class Module : NancyModule { public Module() { Get["/greet/{name}"] = x => { return string.Concat("Hello ", x.name); }; } } Download: MP3 Full Show NOTE: If you Read More...

Read the complete post at http://www.hanselman.com/blog/HanselminutesPodcast270NancySinatraAndTheExplosionOfNETMicroWebFrameworksWithAndreasHåkansson.aspx