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

@celsian/ws-redis

v0.5.5

Published

Redis pub/sub adapter for distributed CelsianJS WebSocket broadcast

Readme

CelsianJS WebSocket Redis Adapter

Distributed WebSocket broadcast via Redis pub/sub for multi-instance CelsianJS deployments. A message broadcast on one node is relayed to connections on every other node.

This package is part of the CelsianJS monorepo. See the root repository README for framework documentation, examples, and release notes.

Installation

npm install @celsian/ws-redis

ioredis is included as a dependency.

Usage

Wrap the app's wsRegistry with a RedisWSAdapter. Broadcast through the adapter (not app.wsBroadcast) so the message fans out across all nodes.

import { createApp, serve } from '@celsian/core';
import { RedisWSAdapter } from '@celsian/ws-redis';

const app = createApp();

// Define a WebSocket route
app.ws('/chat', {
  open(ws) { ws.send('welcome'); },
  message(ws, data) { /* handle inbound message */ },
});

// Bridge this node's connections to Redis pub/sub
const wsRedis = new RedisWSAdapter(app.wsRegistry, { url: process.env.REDIS_URL! });
await wsRedis.subscribePath('/chat');

// Broadcast to /chat on EVERY node (local + remote)
await wsRedis.broadcast('/chat', JSON.stringify({ msg: 'hello everyone' }));

serve(app, { port: 3000 });

A convenience factory is also exported:

import { createRedisWSAdapter } from '@celsian/ws-redis';

const wsRedis = createRedisWSAdapter('redis://localhost:6379')(app.wsRegistry);

Options

new RedisWSAdapter(registry, options) takes:

| Option | Type | Description | | ------ | ---- | ----------- | | url | string | Redis connection URL (redis://...). Provide this, or both publisher and subscriber. | | publisher | Redis | An existing ioredis client for publishing. | | subscriber | Redis | An existing ioredis client for subscribing. | | onError | (error: Error) => void | Connection-error callback for owned clients. Ignored when you pass your own publisher/subscriber. |

Key methods: subscribePath(path), broadcast(path, data, exclude?), broadcastAll(data, exclude?) (cross-node * fan-out), and close() to tear down the Redis connections.

WebSocket serving requires a runtime that supports it. On Node, install ws (npm i ws); Bun serves WebSockets natively. This adapter only relays broadcasts between nodes — it does not change which runtimes can accept connections.

License

MIT