Giraffe.Htmx
1.6.1
See the version list below for details.
dotnet add package Giraffe.Htmx --version 1.6.1
NuGet\Install-Package Giraffe.Htmx -Version 1.6.1
<PackageReference Include="Giraffe.Htmx" Version="1.6.1" />
paket add Giraffe.Htmx --version 1.6.1
#r "nuget: Giraffe.Htmx, 1.6.1"
// Install Giraffe.Htmx as a Cake Addin #addin nuget:?package=Giraffe.Htmx&version=1.6.1 // Install Giraffe.Htmx as a Cake Tool #tool nuget:?package=Giraffe.Htmx&version=1.6.1
Giraffe.Htmx
This package enables server-side support for htmx within Giraffe and ASP.NET's HttpContext
.
htmx version: 1.6.1
Setup
- Install the package.
- Prior to using the request header extension properties or the header-setting
HttpHandler
s,open Giraffe.Htmx
.
Use
To obtain a request header, using the IHeaderDictionary
extension properties:
let myHandler : HttpHander =
fun next ctx ->
match ctx.HxPrompt with
| Some prompt -> ... // do something with the text the user provided
| None -> ... // no text provided
To set a response header:
let myHandler : HttpHander =
fun next ctx ->
// some meaningful work
withHxPush "/some/new/url" >=> [other handlers]
Learn
The naming conventions of this library were selected to mirror those provided by htmx. The header properties become Hx*
on the ctx.Request.Headers
object, and the response handlers are withHx*
based on the header being set. The only part that does not line up is withHxTrigger*
and withHxTriggerMany
; the former set work with a single string (to trigger a single event with no arguments), while the latter set supports both arguments and multiple events.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- FSharp.Core (>= 6.0.1)
- Giraffe (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.3 | 145 | 10/18/2024 |
2.0.2 | 261 | 8/13/2024 |
2.0.1 | 68 | 7/29/2024 |
2.0.0 | 570 | 6/18/2024 |
2.0.0-beta4 | 131 | 5/23/2024 |
2.0.0-beta3 | 100 | 4/18/2024 |
2.0.0-beta1 | 100 | 3/19/2024 |
2.0.0-alpha2 | 133 | 2/12/2024 |
2.0.0-alpha1 | 118 | 1/31/2024 |
1.9.12 | 1,385 | 4/18/2024 |
1.9.11 | 1,279 | 3/19/2024 |
1.9.10 | 559 | 1/3/2024 |
1.9.8 | 339 | 11/22/2023 |
1.9.6 | 271 | 9/28/2023 |
1.9.5 | 174 | 8/25/2023 |
1.9.4 | 294 | 7/26/2023 |
1.9.3 | 165 | 7/15/2023 |
1.9.2 | 366 | 5/6/2023 |
1.9.0 | 208 | 4/14/2023 |
1.8.6 | 267 | 3/3/2023 |
1.8.5 | 3,972 | 1/18/2023 |
1.8.4 | 1,559 | 11/24/2022 |
1.8.0 | 2,426 | 7/14/2022 |
1.7.0 | 1,211 | 2/24/2022 |
1.6.1 | 281 | 1/7/2022 |
0.9.3 | 1,462 | 11/26/2021 |
0.9.2 | 317 | 11/11/2021 |
0.9.1 | 317 | 11/8/2021 |
Initial production-ready release