suave
suave copied to clipboard
Suave is a simple web development F# library providing a lightweight web server and a set of combinators to manipulate route flow and task composition.
Hello, Comparing the default mime types of Suave https://github.com/SuaveIO/suave/blob/57d69e39e67a5b1a1c60b7c015c698a1901a9420/src/Suave/Combinators.fs#L90-L114 to the list of ASP.NET Core https://github.com/dotnet/aspnetcore/blob/86e28e7b267579e2999e06b63eeef27e4836384a/src/Middleware/StaticFiles/src/FileExtensionContentTypeProvider.cs#L24-L404 There is quite the delta. Would you be open to having the same list?
The current link only redirects to gitbooks.com
I know in suave we strive to use partial application, but in many cases and e.g. when using external libraries for aspnet, it's quite common to have to register components...
maybe also providing support for Task or IcedTask instead of Async could improve suave performance quite a bit over the original async. since latest F# we have native task CE...
Suave 2.5.x supported .net standard 2.0; Suave 2.6.x appears to have dropped support and upgrade to .net standard 2.1. This means that you can't use it anymore from .net framework...
Addresses https://github.com/SuaveIO/suave/issues/748 and https://github.com/SuaveIO/suave/issues/752
Suave should support the Xamarin.Mac "Modern" framework. I have a Xamarin.Mac app which uses Suave internally and would greatly benefit from being able to target Xamarin.Mac modern rather than the...
In the module [EventSource] (https://suave.io/Suave.html#def:module%20Suave.EventSource) I don't see any function to detect the client is disconnected. My use case is: the server side (using Suave of course) observes data from...
I'm trying to proxy to an endpoint using [proxy](https://github.com/SuaveIO/suave/blob/master/src/Suave/Proxy.fs) from a Suave server where the remote endpoint is giving me a response with `transfer-encoding: chunked`. My Suave server logs ```...
There seem to be no clear instructions as to how the docs are to be generated from the repository. Could they be included in the README by someone who knows...