SvelteWebSocketServer 2.4.2
dotnet add package SvelteWebSocketServer --version 2.4.2
NuGet\Install-Package SvelteWebSocketServer -Version 2.4.2
<PackageReference Include="SvelteWebSocketServer" Version="2.4.2" />
<PackageVersion Include="SvelteWebSocketServer" Version="2.4.2" />
<PackageReference Include="SvelteWebSocketServer" />
paket add SvelteWebSocketServer --version 2.4.2
#r "nuget: SvelteWebSocketServer, 2.4.2"
#addin nuget:?package=SvelteWebSocketServer&version=2.4.2
#tool nuget:?package=SvelteWebSocketServer&version=2.4.2
SvelteWebSocketServer
Basic C# implementation of a WebSocket server for use with svelte-websocket-stores
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
- Send the client messages for all the variables currently stored values
Message Received
- The incoming text data is parsed as JSON.
- The variable is indexed by the object's
scope
andid
fields from the dictionary holding the respectively typed variables. - The variable's value is assigned to the object's
value
field. - Send all clients a message for the new value.
- Handle any events.
Client [^1]
Message Received
- The incoming text data is parsed as JSON.
- 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. - The local Svelte store is indexed by the object's
id
field from the dictionary holding the respectively typed stores. - The store's value is assigned to the object's
value
field.
[^1]: This is the behavior expected by this WebSocket server
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. |
-
net8.0
- EmbedIO (>= 3.5.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.