Redis-powered MQEmitter for pub/sub messaging with MQTT-like wildcards. Version 4.0.1 is the latest stable release, maintained under the mqemitter ecosystem. It uses ioredis internally, creates two Redis connections, and supports all ioredis options. Designed for Node.js with an async/emit callback pattern, it does not handle errors in the callback.
npm install eflex-mqemitter-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Connects to Redis, subscribes to a topic with wildcards, emits a message, and closes the connection.
Always call cb() with no argument; if error handling is needed, implement externally.
Check maxclients setting on Redis server; adjust ioredis options to reuse connections if needed.
Pass Redis options directly to constructor instead of using a store object.
Ensure only ioredis is installed; do not install the 'redis' package.
Use import mqemitterRedis from 'mqemitter-redis' then call mqemitterRedis(opts).
Start Redis or set REDIS_HOST and REDIS_PORT environment variables.
Use default import: import mqemitterRedis from 'mqemitter-redis'