Lightweight Redis health check library for Node.js (v0.0.9, no recent updates). Accepts an array of Redis connection configs (host/port) and returns a promise with aggregated health status, success/error counts, and per-connection details. Uses callback-based async pattern. No TypeScript types, no browser support. Suitable for simple health endpoints but lacks active maintenance and modern features like ESM or clustering.
npm install health-check-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Checks health of multiple Redis instances and logs aggregated result with per-instance details.
Use healthCheckRedis.do(configs) instead of healthCheckRedis(configs).
Ensure each config object includes both 'host' and 'port'.
Consider alternatives like ioredis health check or implement your own.
Pin Node.js version or switch to a modern Redis client.
healthCheckRedis.do(configs);
npm install health-check-redis --save
const healthCheckRedis = require('health-check-redis');Verify Redis host and port are correct and accessible.