redis-stream-store is a Node.js library that stores streams in Redis. Version 0.3.1 is the latest and appears to be stable, though it is a niche package with low maintenance activity. It provides a simple API for storing and retrieving Node.js streams to/from Redis, using a prefix-based key scheme. It is unmaintained since 2014.
npm install redis-stream-storeNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates creating a store, reading a stream, and writing a stream to Redis.
Use callback function as second argument to store.get() and store.put().
Consider alternatives like ioredis with stream support or write custom implementation.
Change var store = require('redis-stream-store') to var store = require('redis-stream-store')(6379, 'localhost', 'prefix')Ensure Redis is running on localhost:6379 or pass correct host/port.