SvelteWebSocketServer 2.4.2

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

SvelteWebSocketServer

Basic C# implementation of a WebSocket server for use with svelte-websocket-stores

nuget version license

Usage

Basic Initialization

using EmbedIO;
using SvelteWebSocketServer;

var wsw = new WebSocketWrapper(); // Main entry-point
var ws = new WebServer().WithModule(webSocketWrapper);

Initialization using the WebSocketWrapperListener for easy event handling

using EmbedIO;
using SvelteWebSocketServer;

var wsw = new WebSocketWrapper(); // Main entry-point
var ws = new WebServer().WithModule(webSocketWrapper);
var wswListener = new WebSocketWrapperListener(wsw);

Basic event handling

wsw.OnJsonSet += (scope, id, value) => ...

Event handling using WebSocketWrapperListener

// Raw JSON value with exact ID match
wswListener.AddHandler("some.state", (scope, id, value) => ... );
// Typed value with exact ID match
wswListener.AddHandler<float>("some.state", (scope, match, value) => ... );

// These regex handlers are now deprecated. Please just use wsw.OnJsonSet instead.

// Raw JSON value with regex match
wswListener.AddHandler(new Regex("some\\.(.+?)\\.state"), (scope, id, value) => ... );
// Typed value with regex match
wswListener.AddHandler<float>(new Regex("some\\.(.+?)\\.state"), (scope, match, value) => ... );

WebSocket Message Format

All communication between a client and this library is over WebSocket.

All WebSocket messages are interpreted as JSON objects.

The message object is defined as:

type Json = boolean | number | string | { [key: string]: Json } | Json[] | null;
type Message = {
	scope: string;
	id: string;
	value: Json;
}

The field scope identifies the scope of the client it comes from and limits which clients receive it when coming from the server. The field id is the primary identifier and determines where the value field is stored.

Server

Client Connected
  1. Send the client messages for all the variables currently stored values
Message Received
  1. The incoming text data is parsed as JSON.
  2. The variable is indexed by the object's scope and id fields from the dictionary holding the respectively typed variables.
  3. The variable's value is assigned to the object's value field.
  4. Send all clients a message for the new value.
  5. Handle any events.

Client [^1]

Message Received
  1. The incoming text data is parsed as JSON.
  2. The object's scope field is checked if it is global ("global") or matches the client's local scope (for example "tp1"). If it does not match, the message is discarded.
  3. The local Svelte store is indexed by the object's id field from the dictionary holding the respectively typed stores.
  4. The store's value is assigned to the object's value field.

[^1]: This is the behavior expected by this WebSocket server

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 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. 
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
2.4.2 102 3/21/2025
2.4.1 90 3/21/2025
2.4.0 128 3/20/2025
2.3.3 371 3/19/2025
2.3.2 292 3/18/2025
2.2.0 106 11/21/2024
2.1.0 109 10/9/2024
2.0.2 124 8/29/2024
2.0.1 110 7/22/2024
1.0.2 118 7/8/2024
1.0.0.1 121 7/2/2024
1.0.0 114 7/1/2024