Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a .NET framework similar to Ruby's Sinatra?

Does anyone know if there is a .NET library/API similar to Ruby's Sinatra?

Just wondering since with the new Routing API in ASP.NET MVC, WCF and .NET 3.5, it seems like a possibility.

UPDATED: Best answer link is stale so check out Nancy @ https://github.com/NancyFx/Nancy

like image 519
kenny Avatar asked Sep 13 '09 22:09

kenny


People also ask

Which is better .NET Core or .NET framework?

. NET Core is faster than . NET Framework because the architecture of . NET Core is written or restructured from scratch to make it a modular, lightweight, fast, and cross-platform Framework.

What are the different .NET framework?

The two major components of . NET Framework are the Common Language Runtime (CLR) and the . NET Framework Class Library. The CLR is the execution engine that handles running applications.

Is .NET Core a good framework?

NET Core is Extremely Versatile. As has been noted, . NET Core is one of the most versatile application development frameworks available. Due to its cross-platform support, developers are able to use it for a wide variety of operating systems and chipsets.


1 Answers

There is a new framework called Nancy for .NET which is inspired by Sinatra and looks promising. But it is still in a very early state.

You can read more about it here: http://elegantcode.com/2010/11/28/introducing-nancy-a-lightweight-web-framework-inspired-by-sinatra/ and

like image 84
Tobias Avatar answered Sep 19 '22 18:09

Tobias