BlazorChat.Server 1.0.3

dotnet add package BlazorChat.Server --version 1.0.3
                    
NuGet\Install-Package BlazorChat.Server -Version 1.0.3
                    
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="BlazorChat.Server" Version="1.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BlazorChat.Server" Version="1.0.3" />
                    
Directory.Packages.props
<PackageReference Include="BlazorChat.Server" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BlazorChat.Server --version 1.0.3
                    
#r "nuget: BlazorChat.Server, 1.0.3"
                    
#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.
#:package BlazorChat.Server@1.0.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BlazorChat.Server&version=1.0.3
                    
Install as a Cake Addin
#tool nuget:?package=BlazorChat.Server&version=1.0.3
                    
Install as a Cake Tool

BlazorChat.Server

Commercial server package for BlazorChat — SignalR hub, licensing, and persistent storage abstractions.

30-Day Free Trial — No license key needed. Start building immediately.

The free BlazorChat component provides in-memory chat only. This package adds the SignalR hub and extensible storage interfaces for production use.

🚀 Quick Start

dotnet add package BlazorChat.Server

1. Register Services

Add to your Program.cs:

 using BlazorChat.Server.Extensions;

// Add BlazorChat server services 

builder.Services.AddBlazorChatServer(builder.Configuration);

// After app.Build(), map the SignalR hub 
app.MapBlazorChatHub();

2. Configure License Key (After Trial)

appsettings.json:

{
  "BlazorChat": {
    "LicenseKey": "YOUR LICENSE KEY HERE"
  }
}

Or environment variable:

BLAZORCHAT_LICENSE_KEY=your-license-key-here

Purchase license keys →

🎯 Features

  • SignalR Chat Hub — real-time message delivery, typing indicators, user presence
  • Emoji Reactions — per-message reactions with summary aggregation
  • Message Editing & Deletion — soft-delete with restore
  • Extensible Storage — implement IChatRepository and IChatPresenceStore for any database
  • Offline-First Licensing — purchased keys are JWT, validated locally, zero network dependency
  • Developer-Friendly — localhost always free, no license key needed

💾 Persistent Storage

Default: In-memory (data lost on restart).

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

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BlazorChat.Server:

Package Downloads
BlazorChat.Server.SqlServer

SQL Server persistence provider for BlazorChat.Server. Production-ready database storage implementation. Auto-installs BlazorChat.Server dependency. Requires SQL Server 2016+ or Azure SQL Database.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 38 3/13/2026
1.0.2 89 3/9/2026

v1.0.3:
- Fixed: Package metadata cleanup — updated description and documentation

v1.0.2:
- Fixed: Emoji reactions replacing each other when multiple different emojis added to the same message