ioredis-commands
Version:
Redis commands
22 lines (14 loc) • 409 B
Markdown
# Redis Commands
[](https://travis-ci.org/luin/redis-commands)
This module exports all the commands that Redis supports.
## Install
```shell
$ npm install ioredis-commands
```
## Usage
```javascript
var commands = require('ioredis-commands');
Object.keys(commands).forEach(function (command) {
console.log(command);
});
```