@rxtk/ws
v0.0.0
Published
🔌 RxJS operators for working with WebSockets
Readme
@rxtk/ws
🔌 RxJS operators for working with WebSockets
yarn add @rxtk/wsAPI
conduit
Opening a two-way WebSocket is a very common software pattern. The conduit operator makes it trivially easy to do this. It pipes an Observable into a two-way websocket. Each item in the input Observable will be published to the server. The output Observable will be the messages sent from the server to the client.
Optionally, it can be performed using a custom serializer or deserializer -- otherwise, it will assume the messages are encoded/decoded as JSON and transmitted as JSON strings.
The conduit also supports error handling and many disconnection scenarios (see examples below).
Basic usage
import { from } from 'rxjs';
import { conduit } from '@rxtk/ws';
const messagesToSend$ = from([
{body: 'data'},
{body: 'more data'},
]);
const socketResponse$ = messageToSend$.pipe(
conduit({url: 'wss://mysite.com'})
);
socketResponse$.subscribe(); // this will attempt to send the messages to the serverWith error handling
import { from } from 'rxjs';
import { conduit } from '@rxtk/ws';
const messagesToSend$ = from([
{body: 'data'},
{body: 'more data'},
]);
const socketResponse$ = messageToSend$.pipe(
conduit({url: 'wss://mysite.com'})
);
socketResponse$.subscribe(); // this will attempt to send the messages to the server
socketResponse$.error$.subscribe(); // returns WebSocket errorsCustom serialization
import { from } from 'rxjs';
import { conduit } from '@rxtk/ws';
const decodeMessage = base64Message => atob(base64Message);
const encodeMessage = binaryString => btoa(binartString);
const messagesToSend$ = from([
'somebinarystring',
'anotherbinarystring',
]);
const socketResponse$ = messageToSend$.pipe(
conduit({
url: 'wss://mysite.com',
serializer: encodeMessage,
deserializer: decodeMessage,
})
);
socketResponse$.subscribe();