Skip to content

kenegozi/webondiet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Web on Diet

A fat free, no fuss, simple and straightforward web framework. Currently targeting .NET framework, Mono support coming soon. At some point, a Java port will also be created.

Example

The 'hello world' of this is to have this simple code in an empty web application:

public class Actions
{
	[Get("/")]
	public string Testing()
	{
		return "Hello";
	}
}

And the following web.config snippet is all you need (when running in IIS):

<handlers>
	<add name="WebOnDiet" verb="*" path="*" type="WebOnDiet.Framework.WebOnDietHttpHandlerFactory, WebOnDiet"/>
</handlers>

and that's it !

About

Fat free web framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published