Skip to content

Repository files navigation

Nancy.RouteHelpers

Introduction

Welcome to Nancy.RouteHelpers!

This library allows you to write pretty NancyFX routes without nasty looking regex strings in your routes.

public class HomeModule : NancyModule
{
    public HomeModule()
    {
        Get[Route.Root().And().AnyIntAtLeastOnce("id")] = parameters =>
        {
            return View["Index"];
        };
    }
}

About

Allows you to write syntactic sugary routes in Nancy

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages