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

@socket.io/redis-streams-adapter

v0.2.1

Published

The Socket.IO adapter based on Redis Streams, allowing to broadcast events between several Socket.IO servers

Downloads

64,103

Readme

Socket.IO Redis Streams adapter

The @socket.io/redis-streams-adapter package allows broadcasting packets between multiple Socket.IO servers.

Supported features:

Related packages:

  • Redis adapter: https://github.com/socketio/socket.io-redis-adapter/
  • Redis emitter: https://github.com/socketio/socket.io-redis-emitter/
  • MongoDB adapter: https://github.com/socketio/socket.io-mongo-adapter/
  • MongoDB emitter: https://github.com/socketio/socket.io-mongo-emitter/
  • Postgres adapter: https://github.com/socketio/socket.io-postgres-adapter/
  • Postgres emitter: https://github.com/socketio/socket.io-postgres-emitter/

Table of contents

Installation

npm install @socket.io/redis-streams-adapter redis

Usage

With the redis package

import { createClient } from "redis";
import { Server } from "socket.io";
import { createAdapter } from "@socket.io/redis-streams-adapter";

const redisClient = createClient({ url: "redis://localhost:6379" });

await redisClient.connect();

const io = new Server({
  adapter: createAdapter(redisClient)
});

io.listen(3000);

With the redis package and a Redis cluster

import { createCluster } from "redis";
import { Server } from "socket.io";
import { createAdapter } from "@socket.io/redis-streams-adapter";

const redisClient = createCluster({
  rootNodes: [
    {
      url: "redis://localhost:7000",
    },
    {
      url: "redis://localhost:7001",
    },
    {
      url: "redis://localhost:7002",
    },
  ],
});

await redisClient.connect();

const io = new Server({
  adapter: createAdapter(redisClient)
});

io.listen(3000);

With the ioredis package

import { Redis } from "ioredis";
import { Server } from "socket.io";
import { createAdapter } from "@socket.io/redis-streams-adapter";

const redisClient = new Redis();

const io = new Server({
  adapter: createAdapter(redisClient)
});

io.listen(3000);

With the ioredis package and a Redis cluster

import { Cluster } from "ioredis";
import { Server } from "socket.io";
import { createAdapter } from "@socket.io/redis-streams-adapter";

const redisClient = new Cluster([
  {
    host: "localhost",
    port: 7000,
  },
  {
    host: "localhost",
    port: 7001,
  },
  {
    host: "localhost",
    port: 7002,
  },
]);

const io = new Server({
  adapter: createAdapter(redisClient)
});

io.listen(3000);

Options

| Name | Description | Default value | |---------------------|-------------------------------------------------------------------------------------------------------------------|----------------| | streamName | The name of the Redis stream. | socket.io | | maxLen | The maximum size of the stream. Almost exact trimming (~) is used. | 10_000 | | readCount | The number of elements to fetch per XREAD call. | 100 | | sessionKeyPrefix | The prefix of the key used to store the Socket.IO session, when the connection state recovery feature is enabled. | sio:session: | | heartbeatInterval | The number of ms between two heartbeats. | 5_000 | | heartbeatTimeout | The number of ms without heartbeat before we consider a node down. | 10_000 |

How it works

The adapter will use a Redis stream to forward events between the Socket.IO servers.

Notes:

  • a single stream is used for all namespaces
  • the maxLen option allows to limit the size of the stream
  • unlike the adapter based on Redis PUB/SUB mechanism, this adapter will properly handle any temporary disconnection to the Redis server and resume the stream
  • if connection state recovery is enabled, the sessions will be stored in Redis as a classic key/value pair

License

MIT