Neon.SignalR
4.0.18
See the version list below for details.
dotnet add package Neon.SignalR --version 4.0.18
NuGet\Install-Package Neon.SignalR -Version 4.0.18
<PackageReference Include="Neon.SignalR" Version="4.0.18" />
<PackageVersion Include="Neon.SignalR" Version="4.0.18" />
<PackageReference Include="Neon.SignalR" />
paket add Neon.SignalR --version 4.0.18
#r "nuget: Neon.SignalR, 4.0.18"
#:package Neon.SignalR@4.0.18
#addin nuget:?package=Neon.SignalR&version=4.0.18
#tool nuget:?package=Neon.SignalR&version=4.0.18
Introduction
This package contains some useful abstractions for SignalR services.
SignalR Proxy
The SignalR Proxy enables sticky sessions for SignalR clients. It removes the need for a load balancer in front of your service. The proxy is a middleware that intercepts all requests to the SignalR hub and redirects them to the correct instance. This works by storing the upstream host in a cookie, allowing the backend service to be scaled up/down without causing clients to be disconnected which would happen with a hashing load balancer.
For this to work, the PeerAddress
must be an SRV
record.
In Kubernetes this can be achieved by using a headless service.
Configuration
builder.Services.AddSignalrProxy(options =>
{
options.PeerAddress = "my-headless-service.ns.svc.cluster.local";
options.Port = PORT;
});
app.UseSignalrProxy();
NATS backplane
The NATS bakplane enables a distributed SignalR service, using NATS as the message broker.
Configuration
builder.Services.AddSignalR()
.AddNats(options =>
{
options.Servers = new string[] { "nats.ns.svc.cluster.local" };
});
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 was computed. 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 was computed. 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. |
-
net8.0
- AsyncKeyedLock (>= 7.0.0)
- DnsClient (>= 1.7.0)
- MessagePack (>= 2.5.187)
- Microsoft.AspNetCore.Mvc.NewtonsoftJson (>= 8.0.19)
- Microsoft.AspNetCore.SignalR.Client (>= 8.0.19)
- Microsoft.AspNetCore.SignalR.Protocols.MessagePack (>= 8.0.19)
- Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (>= 8.0.19)
- Microsoft.Net.Http.Headers (>= 8.0.19)
- NATS.Net (>= 2.3.3)
- Neon.Common (>= 4.0.18)
- Yarp.ReverseProxy (>= 2.1.0)
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 |
---|---|---|
4.0.19-preview.2 | 120 | 8/14/2025 |
4.0.19-preview.1 | 116 | 8/13/2025 |
4.0.19-preview.0 | 119 | 8/13/2025 |
4.0.18 | 213 | 8/6/2025 |
4.0.17 | 219 | 4/15/2025 |
4.0.17-preview.0 | 180 | 4/14/2025 |
4.0.16 | 217 | 4/14/2025 |
4.0.15 | 183 | 4/10/2025 |
4.0.14 | 140 | 12/19/2024 |
4.0.13-preview.11 | 100 | 8/9/2024 |
4.0.13-preview.10 | 97 | 8/9/2024 |
4.0.13-preview.9 | 91 | 8/9/2024 |
4.0.13-preview.8 | 88 | 8/9/2024 |
4.0.13-preview.3 | 67 | 8/1/2024 |
4.0.12 | 87 | 7/30/2024 |
4.0.11-preview.6 | 75 | 7/30/2024 |
4.0.11-preview.4 | 95 | 7/3/2024 |
4.0.11-preview.3 | 83 | 6/15/2024 |
4.0.11-preview.2 | 118 | 6/7/2024 |
4.0.11-preview.1 | 90 | 6/6/2024 |
4.0.11-preview.0 | 97 | 6/3/2024 |
4.0.10 | 172 | 4/25/2024 |
4.0.10-preview.0 | 95 | 4/25/2024 |
4.0.9 | 136 | 4/25/2024 |
4.0.8 | 149 | 3/29/2024 |
4.0.7 | 136 | 3/22/2024 |
4.0.6 | 153 | 3/19/2024 |
4.0.5 | 153 | 3/17/2024 |
4.0.4 | 164 | 2/24/2024 |
4.0.4-rc.12 | 96 | 2/24/2024 |
4.0.4-rc.11 | 98 | 2/23/2024 |
4.0.4-rc.10 | 98 | 2/22/2024 |
4.0.4-rc.8 | 105 | 2/21/2024 |
4.0.4-rc.7 | 91 | 2/21/2024 |
4.0.4-rc.6 | 100 | 2/21/2024 |
4.0.4-rc.5 | 95 | 2/21/2024 |
4.0.4-rc.4 | 101 | 2/21/2024 |
4.0.4-rc.2 | 89 | 2/20/2024 |
4.0.4-rc.1 | 97 | 2/16/2024 |
4.0.3 | 171 | 2/15/2024 |
4.0.3-rc.2 | 90 | 2/15/2024 |
4.0.3-rc.1 | 90 | 2/15/2024 |
4.0.2 | 135 | 2/15/2024 |
4.0.1 | 169 | 2/14/2024 |
4.0.0 | 180 | 2/8/2024 |
4.0.0-rc.17 | 90 | 2/7/2024 |
4.0.0-rc.16 | 88 | 2/3/2024 |
4.0.0-rc.15 | 98 | 2/2/2024 |
4.0.0-rc.14 | 96 | 1/24/2024 |
4.0.0-rc.13 | 80 | 1/24/2024 |
4.0.0-rc.12 | 90 | 1/24/2024 |
4.0.0-rc.11 | 98 | 1/24/2024 |
4.0.0-rc.10 | 99 | 1/24/2024 |
4.0.0-rc.8 | 110 | 1/23/2024 |
4.0.0-rc.7 | 87 | 1/20/2024 |