Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 718 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 718 Bytes

WiffWaff

An overly opinated proof-of-concept web framework.

Turns this class

public class Detail
{
    private static Product _product = new Product
    {
        Name = "Widget",
        Description = "One size fits all widget!",
        Category = "Mechanical",
        Price = 99.99m,
        InStock = true
    };

    public Product Get() => _product;

    public void Post(Product body) => _product = body;

}

into this page:

Framework provides the HTML, instead of the app. Initially named as Web Application Framework (WAF) but turned into WiffWaff!