Saturn
Saturn copied to clipboard
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
Currently not in a position to upgrade to netcoreapp 5.0 and require this fix for v14 This branch was based off tag v0.14.1
So... this is initial implementation fo `Live Components`. Inspired by [`Phoenix Live View`](https://github.com/phoenixframework/phoenix_live_view) they are designed to enable rich, real-time user experiences with server-rendered HTML. Under the hood, they're powered...
FS0708
i am trying to extend a computation expression to add some custom behaviour, but then i get this error ``` Program.fs(40, 9): [FS0708] This control construct may only be used...
https://saturnframework.org/explanations/endpoint-routing.html does this still have to be experimental, and not the default (also for docs)? as per NET6
i would like a way to map a standard controller in my code to a saturn controller or router ```fsharp type MyStandardAspController() = inherit Controller() //.... let saturnController = controllerOf...
Setting the Cache-Control header for static files is a pretty common thing to do, but there is no option when using `use_static` to set it. I worked around this using...
Currently the `router { }` CE has no way to allow a HEAD request to be handled. A HEAD request [is supposed to](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD) return the headers, but not the body,...
**Context:** I was trying to find an amusing problem with my SAFE app on docker-alpine-aspnet, then I stumbled in a crash that `ApplicationInsights` wasn't reporting any error, only that the...
A general question: with Azure AD and Google Auth providers being directly integrated into Saturn.Extensions.Authorization would adding more (e.g. Twitch) be welcomed or would it be preferable to use the...
As user of this framework I would like some guidance / best practices for writing tests. What are typical integration or unit tests one might write (with examples in documentation)?...