SignalPlayR.Core 1.0.0

dotnet add package SignalPlayR.Core --version 1.0.0
                    
NuGet\Install-Package SignalPlayR.Core -Version 1.0.0
                    
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="SignalPlayR.Core" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SignalPlayR.Core" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="SignalPlayR.Core" />
                    
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 SignalPlayR.Core --version 1.0.0
                    
#r "nuget: SignalPlayR.Core, 1.0.0"
                    
#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 SignalPlayR.Core@1.0.0
                    
#: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=SignalPlayR.Core&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=SignalPlayR.Core&version=1.0.0
                    
Install as a Cake Tool

SignalPlayR 🎮

(pronounced: "Signal Player")

A modern, extensible .NET 10 library for building real-time collaborative experiences using SignalR.

SignalPlayR provides drop-in multiplayer state synchronization for plain text, rich text (Quill Deltas), ephemeral presence, live remote carets, and threaded comments.


Features

  • 👥 Multi-User Presence & Sessions: Track online participants with automatic cleanup on abrupt disconnects.
  • 📝 Multi-Field Document Synchronization: Synchronize multiple independent text fields per session room.
  • 🖋️ Rich Text Delta Sync: Full support for Quill Deltas and remote collaborative carets via quill-cursors.
  • 💬 Threaded Comments & Discussions: In-document comments with reply threads and resolve statuses.
  • 🔭 Native OpenTelemetry & Structured Logging: Zero-allocation source-generated logging with built-in ActivitySource and Meter metrics.
  • 🧩 Pluggable Architecture: Ship with in-memory engines out of the box or swap in Redis, EF Core, or distributed databases.

Quick Start

1. Installation

dotnet add package SignalPlayR.Core

2. Register Services (Program.cs)

using SignalPlayR.Core.Extensions;
using SignalPlayR.Core.Hubs;

var builder = WebApplication.CreateBuilder(args);

// Register default in-memory providers & SignalR services
builder.Services.AddSignalPlayR();

var app = builder.Build();

// Map the real-time endpoint
app.MapHub<SignalPlayRHub>("/signalplayrhub");

app.Run();

3. OpenTelemetry Setup

Wire SignalPlayR's telemetry directly into your OpenTelemetry pipeline:

builder.Services.AddOpenTelemetry()
    .WithTracing(tracing => tracing
        .AddSource("SignalPlayR.Core")
        .AddAspNetCoreInstrumentation()
        .AddOtlpExporter())
    .WithMetrics(metrics => metrics
        .AddMeter("SignalPlayR.Core")
        .AddOtlpExporter());

License

MIT License. Created with ❤️ for high-performance .NET applications.

Product Compatible and additional computed target framework versions.
.NET 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

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 90 9/8/2026