Info
Version: | 2.2.6 |
Author(s): | Martin Rue |
Last Update: | Wednesday, January 18, 2012 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | http://github.com/martinrue/Tinyweb |
NuGet Url: | https://www.nuget.org/packages/Tinyweb |
Install
Install-Package Tinyweb
dotnet add package Tinyweb
paket add Tinyweb
Tinyweb Download (Unzip the "nupkg" after downloading)
Dependencies
- structuremap(2.6.2)
- spark(1.5)
Tags
Tinyweb moves away from the MVC pattern for developing web applications. Instead, you start with separate addressable resources that respond directly to the HTTP method that was used to access the resource.
Every resource is a class and every implemented HTTP method (get, post, put, delete) is a method on the class. With Tinyweb, you're writing code that is conceptually close to the way HTTP actually works.