SvelteWebSocketServer 2.0.2

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

// Install SvelteWebSocketServer as a Cake Tool
#tool nuget:?package=SvelteWebSocketServer&version=2.0.2                

SvelteWebSocketServer

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

nuget version license

Usage

Basic Initialization

using SvelteWebSocketServer;

var wss = new WebSocketServer();
var wsw = wss.webSocketWrapper; // Main entry-point

wss.Start(); // Non-blocking

Initialization using the WebSocketWrapperListener for easy event handling


using SvelteWebSocketServer;

var wss = new WebSocketServer();
var wsw = wss.webSocketWrapper; // Main entry-point
var wswListener = new WebSocketWrapperListener(wsw);

wss.Start(); // Non-blocking

Basic event handling

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

Event handling using WebSocketWrapperListener

wswListener.AddBooleanHandler("tp1", "some.state", (scope, id, value) => ... );
wswListener.AddBooleanRegexHandler("tp1", 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 Message = {
	scope: string,
	id: string,
	type: string,
	value: boolean | number | string,
}

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 type determines how the value field is interpreted as well as which of the tables (booleans, numbers, or strings) the scope and id fields will be indexing into.

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 object's type field is switched on with the cases "boolean", "number", and "string". If there is no match, the message is discarded.
  3. The variable is indexed by the object's scope and id fields from the dictionary holding the respectively typed variables.
  4. The variable's value is assigned to the object's value field, cast to its respective type.
  5. Send all clients a message for the new value.
  6. 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 object's type field is switched on with the cases "boolean", "number", and "string". If there is no match, the message is discarded.
  4. The local Svelte store is indexed by the object's id field from the dictionary holding the respectively typed stores.
  5. The store's value is assigned to the object's value field, cast to its respective type.

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

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 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.0.2 103 8/29/2024
2.0.1 92 7/22/2024
2.0.1-alpha 81 7/22/2024
2.0.0-alpha 74 7/22/2024
1.0.2 101 7/8/2024
1.0.0.1 103 7/2/2024
1.0.0 96 7/1/2024