A Bunyan stream transport for logging to Redis. Version 0.1.4 is the latest, though the package appears unmaintained (no recent updates). It allows sending log records to a Redis list or stream via the provided container key. Differentiates from other Bunyan transports by targeting Redis as a log backend. Suitable for centralized logging pipelines consuming from Redis.
npm install bunyan-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a Bunyan logger that writes raw log entries to a Redis list keyed by 'logs'.
Set stream type to 'raw' in Bunyan stream configuration.
Implement custom error handling on the Redis client before passing to transport.
Consider switching to a maintained alternative or update the underlying redis client manually.
Ensure consumer reads from the correct Redis list using LRANGE or BLPOP.
Add 'type: "raw"' to the stream config and ensure transport is an instance of RedisTransport.
Start Redis server or provide correct host/port.
Provide a non-empty 'container' option.