BlazeFusion 0.0.0.7

dotnet add package BlazeFusion --version 0.0.0.7                
NuGet\Install-Package BlazeFusion -Version 0.0.0.7                
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="BlazeFusion" Version="0.0.0.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazeFusion --version 0.0.0.7                
#r "nuget: BlazeFusion, 0.0.0.7"                
#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 BlazeFusion as a Cake Addin
#addin nuget:?package=BlazeFusion&version=0.0.0.7

// Install BlazeFusion as a Cake Tool
#tool nuget:?package=BlazeFusion&version=0.0.0.7                

blaze-fusion

NuGet Version NuGet Downloads Build Status License

BlazeFusion is an extension to ASP.NET Core MVC and Razor Pages. It extends View Components to make them reactive and stateful with ability to communicate with each other without page reloads. As a result, you can create powerful components and make your application to feel like SPA with zero or minimal amount of the JavaScript code (depending on the needs) and without separate front-end build step. It can be used in new or existing ASP.NET Core applications.

BlazeFusion utilizes the following technologies to make it all work:

  • Razor views (*.cshtml) Razor views form the backbone of BlazeFusion's UI generation. They allow for a familiar, server-side rendering strategy that has been a foundation of .NET web development for many years. These *.cshtml files enable a seamless mix of HTML and C# code, allowing for robust and dynamic webpage generation.

  • AJAX AJAX calls are used to communicate between the client and the server, specifically to send the application state to the server, receive updates and responses back, and then store this state to be used in subsequent requests. This ensures that each request has the most up-to-date context and information.

  • Alpine.js Alpine.js stands as a base for requests execution and DOM swapping. But beyond that, Alpine.js also empowers users by providing a framework for adding rich, client-side interactivity to the standard HTML. So, not only does it serve BlazeFusion's internal operations, but it also provides an expansion point for users to enhance their web applications with powerful, interactive experiences.

Installation

In ASP.NET Core Razor Pages / MVC project 6.0+ install BlazeFusion package:

dotnet add package BlazeFusion

If you don't have application yet, you can create it first:

dotnet new webapp -o MyApp
cd MyApp

In your MyApp.csproj file make sure ou have added a Root namespace:

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>net9.0</TargetFramework>
    <Nullable>enable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
   <RootNamespace>MyApp</RootNamespace>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="BlazeFusion" Version="0.0.0.2" />
  </ItemGroup>

</Project>

In your application's startup code (either Program.cs or Startup.cs):

builder.Services.AddBlaze();

...
app.UseStaticFiles();
app.UseBlaze(builder.Environment);

In _ViewImports.cshtml add:

@addTagHelper *, {Your project assembly name}
@addTagHelper *, BlazeFusion

In layout's head tag:

<meta name="blaze-config" />
<script defer src="~/blaze/blaze.js" asp-append-version="true"></script>
<script defer src="~/blaze/alpine.js" asp-append-version="true"></script>

Quick start

To create BlazeFusion component, go to your components folder, for example in case of Razor Pages: ~/Pages/Components/, and create these files:



@model Counter

<div>
  Count: <strong>@Model.Count</strong>
  <button on:click="@(() => Model.Add())">
    Add
  </button>
</div>
// Counter.cs

public class Counter : BlazeComponent
{
    public int Count { get; set; }

    public void Add()
    {
        Count++;
    }
}

Usage

To use your new component, you can render it in your Razor Page (e.g. Index.cshtml) in two ways:

by calling a custom tag:

...
<counter />
...

by calling a generic tag helper:

...
<Blaze name="Counter"/>
...

or by calling an extension method:

...
@await Html.Blaze("Counter")
...

External libraries

Product 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 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. 
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
0.0.0.7 0 1/30/2025
0.0.0.6 0 1/29/2025
0.0.0.5 1 1/29/2025
0.0.0.4 1 1/29/2025
0.0.0.3 1 1/29/2025
0.0.0.2 60 1/26/2025
0.0.0.1 56 1/26/2025