A small, promise-based Redis client for Node.js, version 2.0.0. Built on top of node_redis, it provides a comb promise-based interface for all Redis commands with automatic pipelining. It is a fork of then-redis and requires the comb framework to be declared elsewhere. The library is stable and safe, supporting Redis 2.6+. It offers variable-length argument lists and direct send() method.
npm install comb-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create a Redis client, set a key, increment it, and retrieve the value using promises.
Ensure the comb library is loaded before using comb-redis.
Consider using ioredis or redis for active support.
Require comb before comb-redis: require('comb'); const redis = require('comb-redis');Ensure you chain .then() on the promise returned by db.set().
No dependency data recorded yet.