npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rxjs-broker

v7.1.45

Published

An RxJS message broker for WebRTC DataChannels and WebSockets.

Downloads

338

Readme

rxjs-broker

An RxJS message broker for WebRTC DataChannels and WebSockets.

version

This module is using the power of RxJS to wrap WebSockets or WebRTC DataChannels. It returns a Subject which can be used with all the operators that RxJS provides. But it also provides some additional functionality.

Usage

To install rxjs-broker via npm you can run the following command.

npm install rxjs-broker

rxjs-broker does provide two utility functions: connect() and wrap(). If you're using ES2015 modules you can import them like that.

import { connect, wrap } from 'rxjs-broker';

connect(url: string, subjectConfig?: { openObserver?: NextObserver<void> }): WebSocketSubject

The connect() function takes a URL as a parameter and returns a WebSocketSubject which extends the AnonymousSubject provided by RxJS. It also implements the IRemoteSubject interface which adds two additional methods. It gets explained in more detail below.

const webSocketSubject = connect('wss://super-cool-websock.et');

The second parameter can be used to specify an openObserver which works similar to the openObserver of the WebSocketSubject provided by RxJS. The next() method of it gets called when the underlying WebSocket emits an open event.

wrap(dataChannel: DataChannel, subjectConfig?: { openObserver?: NextObserver<void> }): DataChannelSubject

The wrap() function can be used to turn a WebRTC DataChannel into a DataChannelSubject which does also extend the AnonymousSubject and implements the IRemoteSubject interface.

// Let's imagine a variable called dataChannel exists and its value is a WebRTC DataChannel.
const dataChannelSubject = wrap(dataChannel);

The second parameter can be used to specify an openObserver. The next() method of it gets called when the underlying DataChannel emits an open event.

IRemoteSubject

As mentioned above the IRemoteSubject interface is used to describe the common behavior of the DataChannelSubject and the WebSocketSubject. In TypeScript it looks like this:

interface IRemoteSubject<T> {
    close(): void;

    send(message: T): Promise<void>;
}

close()

The close() method is meant to close the underlying WebSocket or WebRTC DataChannel.

send(message): Promise

The send() method is a supercharged version of next(). It will stringify a given JSON message before sending it and returns a Promise which resolves when the message is actually on it's way.

mask(mask, maskableSubject): IRemoteSubject

rxjs-broker does also provide another standalone function called mask(). It can be imported like that.

import { mask } from 'rxjs-broker';

The mask() function takes a JSON object which gets used to extract incoming data and to enhance outgoing data. If there is for example a DataChannel which receives two types of messages (control messages and measurement messages), they might look somehow like this:

{
    "type": "control",
    "message": {
        "heating": "off"
    }
}
{
    "type": "measurement",
    "message": {
        "temperature": "30°"
    }
}

In case you are not interested in the messages of type control and only want to receive and send messages of type measurement, you can use mask() to achieve exactly that.

const maskedSubject = mask({ type: 'measurement' }, dataChannelSubject);

// The callback will be called with unwrapped messages like { temperature: '30°' }.
maskedSubject.subscribe((message) => {
    // ...
});

When you call next() or send() on the returned IRemoteSubject it also wraps the message with the provided mask. Considering the example introduced above, the usage of the send() method will look like this:

const maskedSubject = mask({ type: 'measurement' }, dataChannelSubject);

// This will send wrapped messages like { type: 'measurement', message: { temperature: '30°' } }.
maskedSubject.send({ temperature: '30°' });