Giraffe.Htmx
2.0.6
dotnet add package Giraffe.Htmx --version 2.0.6
NuGet\Install-Package Giraffe.Htmx -Version 2.0.6
<PackageReference Include="Giraffe.Htmx" Version="2.0.6" />
<PackageVersion Include="Giraffe.Htmx" Version="2.0.6" />
<PackageReference Include="Giraffe.Htmx" />
paket add Giraffe.Htmx --version 2.0.6
#r "nuget: Giraffe.Htmx, 2.0.6"
#addin nuget:?package=Giraffe.Htmx&version=2.0.6
#tool nuget:?package=Giraffe.Htmx&version=2.0.6
Giraffe.Htmx
This package enables server-side support for htmx within Giraffe and ASP.NET's HttpContext
.
htmx version: 2.0.6
Upgrading from v1.x: the migration guide does not currently specify any request or response header changes. This means that there are no required code changes in moving from v1.* to v2.*.
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
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 | 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 is compatible. 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. |
-
net8.0
- FSharp.Core (>= 6.0.0)
- Giraffe (>= 6.4.0)
- Giraffe.Htmx.Common (>= 2.0.6)
-
net9.0
- FSharp.Core (>= 6.0.0)
- Giraffe (>= 6.4.0)
- Giraffe.Htmx.Common (>= 2.0.6)
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.6 | 140 | 7/3/2025 |
2.0.4 | 242 | 12/13/2024 |
2.0.3 | 252 | 10/18/2024 |
2.0.2 | 326 | 8/13/2024 |
2.0.1 | 158 | 7/29/2024 |
2.0.0 | 1,499 | 6/18/2024 |
2.0.0-beta4 | 157 | 5/23/2024 |
2.0.0-beta3 | 126 | 4/18/2024 |
2.0.0-beta1 | 130 | 3/19/2024 |
2.0.0-alpha2 | 165 | 2/12/2024 |
2.0.0-alpha1 | 155 | 1/31/2024 |
1.9.12 | 2,260 | 4/18/2024 |
1.9.11 | 2,182 | 3/19/2024 |
1.9.10 | 612 | 1/3/2024 |
1.9.8 | 405 | 11/22/2023 |
1.9.6 | 322 | 9/28/2023 |
1.9.5 | 211 | 8/25/2023 |
1.9.4 | 335 | 7/26/2023 |
1.9.3 | 204 | 7/15/2023 |
1.9.2 | 411 | 5/6/2023 |
1.9.0 | 255 | 4/14/2023 |
1.8.6 | 311 | 3/3/2023 |
1.8.5 | 4,025 | 1/18/2023 |
1.8.4 | 1,611 | 11/24/2022 |
1.8.0 | 2,481 | 7/14/2022 |
1.7.0 | 1,279 | 2/24/2022 |
1.6.1 | 346 | 1/7/2022 |
0.9.3 | 1,530 | 11/26/2021 |
0.9.2 | 385 | 11/11/2021 |
0.9.1 | 378 | 11/8/2021 |
- All packages now have full XML documentation
- Adds HxSync module and attribute helper to view engine
- Updates script tags to pull htmx 2.0.6 (no header or attribute changes)
- Drops .NET 6 support
NOTE: The CDN for htmx changed from unpkg.com to cdn.jsdelivr.net; sites with Content-Security-Policy headers will want to update their allowed domains accordingly