Giraffe.Htmx
1.9.10
See the version list below for details.
dotnet add package Giraffe.Htmx --version 1.9.10
NuGet\Install-Package Giraffe.Htmx -Version 1.9.10
<PackageReference Include="Giraffe.Htmx" Version="1.9.10" />
<PackageVersion Include="Giraffe.Htmx" Version="1.9.10" />
<PackageReference Include="Giraffe.Htmx" />
paket add Giraffe.Htmx --version 1.9.10
#r "nuget: Giraffe.Htmx, 1.9.10"
#:package Giraffe.Htmx@1.9.10
#addin nuget:?package=Giraffe.Htmx&version=1.9.10
#tool nuget:?package=Giraffe.Htmx&version=1.9.10
Giraffe.Htmx
This package enables server-side support for htmx within Giraffe and ASP.NET's HttpContext.
htmx version: 1.9.10
Setup
- Install the package.
- Prior to using the request header extension properties or the header-setting
HttpHandlers,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
withHxPushUrl "/some/new/url" >=> [other handlers]
The HxSwap module has constants to use for the HX-Reswap header. These may be extended with settle, show, and other qualifiers; see the htmx documentation for the hx-swap attribute for more information.
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 is compatible. 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 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- FSharp.Core (>= 6.0.0)
- Giraffe (>= 6.2.0)
- Giraffe.Htmx.Common (>= 1.9.10)
-
net7.0
- FSharp.Core (>= 6.0.0)
- Giraffe (>= 6.2.0)
- Giraffe.Htmx.Common (>= 1.9.10)
-
net8.0
- FSharp.Core (>= 6.0.0)
- Giraffe (>= 6.2.0)
- Giraffe.Htmx.Common (>= 1.9.10)
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 |
|---|---|---|
| 4.0.0-alpha8 | 102 | 3/22/2026 |
| 4.0.0-alpha6a | 122 | 1/7/2026 |
| 2.0.8 | 412 | 12/28/2025 |
| 2.0.6 | 294 | 7/3/2025 |
| 2.0.4 | 610 | 12/13/2024 |
| 2.0.3 | 330 | 10/18/2024 |
| 2.0.2 | 427 | 8/13/2024 |
| 2.0.1 | 277 | 7/29/2024 |
| 2.0.0 | 3,962 | 6/18/2024 |
| 2.0.0-beta4 | 245 | 5/23/2024 |
| 2.0.0-beta3 | 200 | 4/18/2024 |
| 2.0.0-beta1 | 225 | 3/19/2024 |
| 2.0.0-alpha2 | 243 | 2/12/2024 |
| 2.0.0-alpha1 | 230 | 1/31/2024 |
| 1.9.12 | 2,737 | 4/18/2024 |
| 1.9.11 | 2,402 | 3/19/2024 |
| 1.9.10 | 705 | 1/3/2024 |
| 1.9.8 | 552 | 11/22/2023 |
| 1.9.6 | 412 | 9/28/2023 |
| 1.9.5 | 308 | 8/25/2023 |
Update script tags to pull htmx 1.9.10; add support for hx-on:* attributes; require lowest FSharp.Core version; fix _hxDisabledElt spelling