Htmxor 0.0.0-alpha.1.31

This is a prerelease version of Htmxor.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Htmxor --version 0.0.0-alpha.1.31
NuGet\Install-Package Htmxor -Version 0.0.0-alpha.1.31
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Htmxor" Version="0.0.0-alpha.1.31" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Htmxor --version 0.0.0-alpha.1.31
#r "nuget: Htmxor, 0.0.0-alpha.1.31"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Htmxor as a Cake Addin
#addin nuget:?package=Htmxor&version=0.0.0-alpha.1.31&prerelease

// Install Htmxor as a Cake Tool
#tool nuget:?package=Htmxor&version=0.0.0-alpha.1.31&prerelease

Htmxor - supercharging Blazor Static SSR with Htmx

Htmxor logo

This packages enables Blazor Static SSR (.NET 8 and later) to be used seamlessly with Htmx.

Blazor Static SSR comes with basic interactivity via enhanced navigation and enhanced form handling. Adding Htmx (htmx.org) to the mix gives you access to another level of interactivity while still retaining all the advantages of Blazor SSR stateless nature.

NOTE: This package is highly experimental!

Nuget: https://www.nuget.org/packages/Htmxor

Samples

The following Blazor Web Apps (Htmxor) are used to test Htmxor and demo the capabilities of it.

Getting started

Download the Minimal Htmxor App template for a complete (but) minimal Blazor + htmx app, with various small examples included.

Starting fresh, here is what you need to do.

  1. Include the Htmxor package from NuGet.

  2. Modify Program.cs to look like this:

  var builder = WebApplication.CreateBuilder(args);
  
  // Add services to the container.
  builder.Services
      .AddRazorComponents()
+     .AddHtmx();
  
  var app = builder.Build();
  
  // Configure the HTTP request pipeline.
  if (!app.Environment.IsDevelopment())
  {
      app.UseExceptionHandler("/Error", createScopeForErrors: true);
      // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
      app.UseHsts();
  }
  
  app.UseHttpsRedirection();
  
  app.UseStaticFiles();
  app.UseAntiforgery();
+ app.UseHtmxAntiforgery();
  app.MapRazorComponents<App>()
+    .AddHtmxorComponentEndpoints(app);
  
  app.Run();

Note, there is an overload for AddHtmx(options => { ... }) that allows you to configure all htmx's configuration options for your app.

  1. Modify App.razor to look like this:
  <!DOCTYPE html>
  <html lang="en">
  
  <head>
      <meta charset="utf-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <base href="/" />
      <link rel="stylesheet" href="bootstrap/bootstrap.min.css" />
      <link rel="stylesheet" href="app.css" />
      <link rel="stylesheet" href="MinimalHtmxorApp.styles.css" />
      <link rel="icon" type="image/png" href="favicon.png" />
+     <HtmxHeadOutlet />
      <HeadOutlet />
  </head>
  
+ 
+ <body hx-boost="true">
      <Routes />

-     <script src="_framework/blazor.web.js"></script>
  </body>
  
  </html>
  1. Optionally, create a htmx-request specific layout, e.g., /Components/Layout/HtmxorLayout.razor:
@* 
This is a default layout component that is used with htmx requests.
It only includes the <HeadOutlet /> which makes it possible to update the 
page title during htmx requests by using the <PageTitle></PageTitle> component.
*@
@inherits LayoutComponentBase
<HeadOutlet />
@Body
  1. Optionally, update _Imports.razor:
  @using System.Net.Http
  @using System.Net.Http.Json
  @using Microsoft.AspNetCore.Components.Forms
  @using Microsoft.AspNetCore.Components.Routing
  @using Microsoft.AspNetCore.Components.Web
  @using static Microsoft.AspNetCore.Components.Web.RenderMode
  @using Microsoft.AspNetCore.Components.Web.Virtualization
  @using Microsoft.JSInterop
+ @using Htmxor.Components
+ @using Htmxor.Http
+ @using Htmxor
  
+ @attribute [HxLayout(typeof(HtmxorLayout))]

Note that we set up the custom layout for all components by defining the [HxLayout(typeof(HtmxorLayout))] attribute in the _Imports.razor file.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.0-beta.1.20 34 5/17/2024
1.0.0-beta.1.19 48 5/15/2024
1.0.0-beta.1.18 38 5/15/2024
1.0.0-beta.1.14 40 5/15/2024
1.0.0-beta.1.12 34 5/14/2024
1.0.0-beta.1.7 40 5/13/2024
1.0.0-beta.1.1 36 5/12/2024
1.0.0-beta.1 32 5/12/2024
0.0.0-alpha.1.73 34 5/12/2024
0.0.0-alpha.1.72 37 5/11/2024
0.0.0-alpha.1.70 40 5/9/2024
0.0.0-alpha.1.69 36 5/9/2024
0.0.0-alpha.1.68 37 5/9/2024
0.0.0-alpha.1.67 36 5/9/2024
0.0.0-alpha.1.66 40 5/9/2024
0.0.0-alpha.1.65 39 5/9/2024
0.0.0-alpha.1.64 44 5/9/2024
0.0.0-alpha.1.63 41 5/9/2024
0.0.0-alpha.1.61 39 5/9/2024
0.0.0-alpha.1.56 37 5/8/2024
0.0.0-alpha.1.55 47 5/7/2024
0.0.0-alpha.1.54 47 5/7/2024
0.0.0-alpha.1.53 44 5/7/2024
0.0.0-alpha.1.52 47 5/6/2024
0.0.0-alpha.1.51 42 5/6/2024
0.0.0-alpha.1.49 49 5/5/2024
0.0.0-alpha.1.47 50 5/5/2024
0.0.0-alpha.1.44 48 5/5/2024
0.0.0-alpha.1.42 53 5/5/2024
0.0.0-alpha.1.41 54 5/4/2024
0.0.0-alpha.1.40 39 5/4/2024
0.0.0-alpha.1.39 7 5/3/2024
0.0.0-alpha.1.36 7 5/3/2024
0.0.0-alpha.1.35 7 5/3/2024
0.0.0-alpha.1.33 9 5/3/2024
0.0.0-alpha.1.32 7 5/3/2024
0.0.0-alpha.1.31 4 5/2/2024
0.0.0-alpha.1.28 4 5/2/2024
0.0.0-alpha.1.27 2 5/2/2024
0.0.0-alpha.1.26 3 5/2/2024
0.0.0-alpha.1.25 30 5/1/2024
0.0.0-alpha.1.24 27 5/1/2024
0.0.0-alpha.1.20 25 5/1/2024
0.0.0-alpha.1.19 24 5/1/2024
0.0.0-alpha.1 147 4/29/2024
0.0.0-alpha.0.27 87 1/20/2024