BlazorChat.Server
1.0.3
dotnet add package BlazorChat.Server --version 1.0.3
NuGet\Install-Package BlazorChat.Server -Version 1.0.3
<PackageReference Include="BlazorChat.Server" Version="1.0.3" />
<PackageVersion Include="BlazorChat.Server" Version="1.0.3" />
<PackageReference Include="BlazorChat.Server" />
paket add BlazorChat.Server --version 1.0.3
#r "nuget: BlazorChat.Server, 1.0.3"
#:package BlazorChat.Server@1.0.3
#addin nuget:?package=BlazorChat.Server&version=1.0.3
#tool nuget:?package=BlazorChat.Server&version=1.0.3
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
🎯 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
IChatRepositoryandIChatPresenceStorefor 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).
SQL Server (Recommended)
| 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 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. |
-
net10.0
- BlazorChat.Shared (>= 1.0.3)
- Microsoft.IdentityModel.Tokens (>= 8.16.0)
- Newtonsoft.Json (>= 13.0.3)
- Stripe.net (>= 50.3.0)
- System.IdentityModel.Tokens.Jwt (>= 8.16.0)
-
net8.0
- BlazorChat.Shared (>= 1.0.3)
- Microsoft.IdentityModel.Tokens (>= 8.16.0)
- Newtonsoft.Json (>= 13.0.3)
- Stripe.net (>= 50.3.0)
- System.IdentityModel.Tokens.Jwt (>= 8.16.0)
-
net9.0
- BlazorChat.Shared (>= 1.0.3)
- Microsoft.IdentityModel.Tokens (>= 8.16.0)
- Newtonsoft.Json (>= 13.0.3)
- Stripe.net (>= 50.3.0)
- System.IdentityModel.Tokens.Jwt (>= 8.16.0)
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.
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