The idea behind Fancy to provide a statically typed wrapper around Nancy, so that you can leverage both all the features of Nancy and use it in an F# way.
Install
Install-Package Fanciful -Pre
type ExampleModule() as this =
inherit NancyModule()
do fancy this {
get "/" (fun () -> fancyAsync { return "Hello World!" } )
}
Check this blog post or the documentation for more information