#browser #async-api #server-api #data-exchange #rpc #client-server

workflow-websocket

WebSocket crate (client and server) providing an async Rust API that functions uniformly in native and in browser (WASM32) environments. This crate allows you to develop WebSocket-driven data exchange that function uniformly in web and desktop applications.

28 releases (10 breaking)

new 0.12.0 Apr 20, 2024
0.11.0 Feb 25, 2024
0.10.2 Dec 24, 2023
0.8.1 Nov 1, 2023
0.1.2 Sep 21, 2022

#33 in WebSocket

Download history 369/week @ 2024-01-01 207/week @ 2024-01-08 278/week @ 2024-01-15 498/week @ 2024-01-22 164/week @ 2024-01-29 167/week @ 2024-02-05 212/week @ 2024-02-12 255/week @ 2024-02-19 291/week @ 2024-02-26 108/week @ 2024-03-04 194/week @ 2024-03-11 108/week @ 2024-03-18 179/week @ 2024-03-25 197/week @ 2024-04-01 144/week @ 2024-04-08 370/week @ 2024-04-15

900 downloads per month
Used in 17 crates (2 directly)

MIT/Apache

320KB
6.5K SLoC

workflow-websocket

Part of the workflow-rs application framework.


github crates.io docs.rs license

Platform-neutral WebSocket Client and native Server.

Features

  • Uniform async Rust WebSocket client API that functions in the browser environment (backed by browser WebSocket class) as well as on native platforms (backed by Tungstenite client).
  • Trait-based WebSocket server API backed by Tungstenite server.

This crate allows you to develop a WebSocket client that will work uniformly in in hte native environment and in-browser.

Workflow-WebSocket crate is currently (as of Q3 2022) one of the few available async Rust client-side in-browser WebSocket implementations.

This web socket crate offers an async message send API as well as provides access to Receiver and Sender async_std channels ([async_channel])(https://docs.rs/async-channel/latest/async_channel/) that can be used to send and receive WebSocket messages asynchronously.

To use workflow-websocket in the Node.js environment, you need to introduce a W3C WebSocket object before loading the WASM32 library to simulate the global WebSocket object available in Web Browsers. The WebSocket NPM module provides W3C WebSocket compatible implementation and can be used as follows:

// WebSocket
globalThis.WebSocket = require('websocket').w3cwebsocket;
// Load WASM32 library ...

Dependencies

~17–35MB
~536K SLoC