FSharp.FIO.WebSockets 0.2.2-beta

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

FIO.WebSockets

NuGet Run Tests License: MIT

WebSockets for FIO. Open connections, send frames, and pattern match on incoming messages as composable effects — connections are scoped and released for you, and failures surface as a typed WsError rather than raw exceptions.

  • ClientWebSocketClient.connectDefault opens a scoped connection
  • ServerWebSocketServer.start / acceptDefault / close to accept clients
  • Typed messages — match on Frame(Text …) / Frame(Binary …) / ConnectionClosed
  • Custom codecs — send and receive typed payloads

Install

dotnet add package FSharp.FIO.WebSockets

Quick Start

open FIO.DSL
open FIO.WebSockets
open FIO.WebSockets.WebSocketExtensions

let client = fio {
    use! ws = WebSocketClient.connectDefault "ws://localhost:8080/ws"
    do! ws.SendString "Hello, server!"
    return! ws.ReceiveString()
}

Server

open FIO.DSL
open FIO.WebSockets

let server = fio {
    let! listener = WebSocketServer.start "http://localhost:8080/ws/"
    let! webSocket = WebSocketServer.acceptDefault listener WebSocketConfig.defaultConfig

    match! webSocket.ReceiveMessage() with
    | Frame(Text text) -> do! webSocket.SendText $"echo: {text}"
    | _ -> do! WebSocketServer.close listener
}

Errors

Operations fail with a typed WsErrorConnectionFailed, SendFailed, ReceiveFailed, MessageTooLarge, TimeoutError, CodecError, Closed, GeneralError — with WsError.fromException / WsError.toException to bridge raw exceptions.

Examples · FIO core · MIT

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
0.2.2-beta 63 7/12/2026
0.2.1-beta 66 7/9/2026
0.2.0-beta 58 7/6/2026
0.1.15-alpha 66 6/30/2026
0.1.10-alpha 64 6/24/2026
0.1.0-alpha 90 6/18/2026