# node-redis-dump

> Backup and restore your Redis data written in node.js.

Latest version **0.2.1** (published 2013-09-27) · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.1 |
| Published | 2013-09-27 |
| First published | 2013-09-26 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | * |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Dmitriy Yurchenko |
| Maintainers | evildev |
| Keywords | dump, redis |

## Links

- npm: https://www.npmjs.com/package/node-redis-dump
- Repository: git@github.com:EvilDevRu/redis-dump
- Issues: https://github.com/EvilDevRu/redis-dump/issues
- npm.io page: https://npm.io/package/node-redis-dump

## Dependencies (3)

- [async](https://npm.io/package/async.md) ~0.2.9
- [redis](https://npm.io/package/redis.md) ~0.8.4
- [underscore](https://npm.io/package/underscore.md) ~1.5.2

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 0.2.1 (latest) — 2013-09-27
- 0.2.0 — 2013-09-27
- 0.1.1 — 2013-09-26
- 0.1.0 — 2013-09-26

## README

Node.js redis dump library
==========

Backup and restore your Redis data written on node.js

## Installation

```
  $ npm install node-redis-dump
```

## Quick Start
```js
var RedisDump = require('./node-redis-dump'),
    dump = new RedisDump({
        host: 'localhost',
        port: 6379,
        password: ''
    });

    dump.connect();
    dump.export({
        type: 'redis',
        //isCompress: false, (not working now)
        callback: function(err, data) {
            if (err) {
                console.log('Could\'t not make redis dump!', err);
                return;
            }

            console.log('--------- REDIS DUMP ----------');
            console.log(data);
            console.log('--------- /REDIS DUMP ----------');
    }
});
```

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