A complete Redis client for Node.js (version 0.4.0). This package provides a basic asynchronous Redis client with support for most Redis commands. It is one of the earliest Redis clients for Node.js, with a simple API and event-based model. Note that this package is outdated and unmaintained; users are strongly advised to migrate to 'redis' or 'ioredis' for modern, actively maintained Redis clients with better performance, features, and security.
npm install redis-nodeNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates connecting to Redis, setting and getting a key asynchronously, and handling connection events.
Replace with 'redis' (npm install redis) and update imports.
Use callback patterns or wrap with util.promisify.
Manually handle reconnection logic or switch to a client with auto-reconnection.
Check the hostname and ensure Redis is running on that host.
Start Redis server (e.g., redis-server) and verify port.
No dependency data recorded yet.