# node-redis

> Lightweight, fast, Redis client.

Latest version **0.1.7** (published 2013-06-12) · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install node-redis
pnpm add node-redis
yarn add node-redis
bun add node-redis
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.1.7 |
| Published | 2013-06-12 |
| First published | 2011-02-22 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 41 |
| Author | Tim Smart |
| Maintainers | tim-smart |

## Links

- npm: https://www.npmjs.com/package/node-redis
- Repository: http://github.com/Tim-Smart/node-redis
- Issues: https://github.com/Tim-Smart/node-redis/issues
- npm.io page: https://npm.io/package/node-redis

## Recent versions

- 0.1.7 (latest) — 2013-06-12
- 0.1.6 — 2013-05-09
- 0.1.5 — 2012-07-05
- 0.1.4 — 2012-07-05
- 0.1.3 — 2011-05-31
- 0.1.2 — 2011-03-16
- 0.1.1 — 2011-03-07
- 0.1.0 — 2011-02-22

## README

node-redis
==========

A redis client.

Usage
-----

    var redis = require('node-redis')

    var client = redis.createClient(port, host, auth)

    client.get('key', function (error, buffer) { ... })

    client.multi()
    client.lrange('key', 0, -1)
    client.lrange('key', [0, -1])
    client.exec(function (error, result) { result[0]; result[1] })

    client.subscribe('channel')
    client.on('message', function (buffer) { ... })
    client.on('message:channel', function (buffer) { ... })
    client.unsubscribe('channel')

    client.end()

---
_Source: https://npm.io/package/node-redis · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
