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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@strata-js/rpcbridge

v2.1.0

Published

Strata.js RPC Bridge Server

Readme

Strata WebSocket RPC Bridge Server

A server that exposes Strata Services over HTTP and WebSockets.

Installation

This package is published via NPM's npm repository.

// npm
$ npm add @strata-js/rpcbridge

// yarn
$ yarn add @strata-js/rpcbridge

Usage (Using the server by itself)

import { RPCBridgeServer } from '@strata-js/rpcbridge';

const serverConfig = {
    server: {
        // Enable HTTP Endpoint
        enableHTTP: true,
        // Enable WebSocket Endpoint
        enableWS: true,
        // Port for the server to listen on
        port: 1337,
        // This applies to both HTTP and WS endpoints.
        path: '/api',
        // Exclude stack trace when returning errors.
        excludeStack: false,
        // Allow callers to override the configured service queue name.
        allowQueueNameOverride: false,
    },
    strata: {
        redis: {
            host: 'localhost',
            port: 6379
        },
        client: {
            name: 'RPCServer'
        },
        queues: {
            deleteOnAck: true
        }
    },
    globalBlockList: [ 'service:*' ],
    services: {
        example: {
            queue: 'Requests:StrataExample',
            blockList: [ 'test:fail' ]
        },
        other: {
            queue: 'Requests:StrataExampleOther',
            allowList: [ 'test:*' ]
        },
    }
}

const rpcServer = new RPCBridgeServer(serverConfig);
rpcServer.startListening();

Usage (Bring your own Socket.IO and Express Server)

import fs from 'fs';
import { RPCBridgeServer } from '@strata-js/rpcbridge';
import http from 'http';
import express from 'express';
import { Server as SIOServer } from 'socket.io';

const app = express();
const server = http.createServer(app);
const io = new SIOServer(server);

app.get('/test', (_req, res) =>
{
    res.send('Hello World!');
});

const serverConfig = fs.readFileSync('/path/to/config.json');
new RPCBridgeServer(serverConfig, {}, { expressApp: app, httpServer: server, ioServer: io });

server.listen(serverConfig.server.port);

Block and Allow Lists

Each service can be configured with a block and allow list. This is an array of strings that follow a pattern of context:operation, or a global set of operations for a context can be set by using context:*. There is also a globalBlockList property that applies to every service.

The globalBlockList is always evaluated first. The allowList and blockLists are mutually exclusive with the allowList taking precedence, as such the blockList will be ignored if an allowList is defined for a service.

Using the service endpoints.

If the HTTP endpoint is active it can be used by using an HTTP POST request with a body like so:

{
    "serviceName" : "name",
    "context" : "example",
    "operation" : "test",
    "payload" : { "value" : 1 }
}

If you would like ot use the WebSocket endpoint please see the Starta RPC Client library.

Using Middleware

When constructing an instance of the RPCBridge, you can pass in middle ware to the HTTP and Websocket endpoints like so.

function HTTPLog (req, _res, next)
{
    console.log('Got Request', req.body);
    next();
}

function HTTPSetAuthInfo (req, _res, next)
{
    req.body.auth = 'secretID';
    next();
}

function WSLog (_socket, req, next)
{
    console.log('Got Request', req);
    next();
}

function WSSetAuthInfo (_socket, req, next)
{
    req.auth = 'secretID';
    next();
}

new RPCBridgeServer(
    serverConfig,
    {http:[HTTPLog, HTTPSetAuthInfo], socket: [WSLog, WSSetAuthInfo]}
);

server.listen(serverConfig.server.port);

Future Improvements

  • More granular control when bringing your own HTTP Server