Skip to content

Commit 912a9fd

Browse files
committed
Init commit
1 parent 3bfe4ba commit 912a9fd

File tree

6 files changed

+3031
-2
lines changed

6 files changed

+3031
-2
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- "0.10"
4+
- "0.12"
5+
- "iojs"

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
1-
# redis-commonds
2-
Redis commonds
1+
# Redis Commands
2+
3+
Redis commands.
4+
5+
This module exports all the commands that Redis supports, using the API of http://redis.io/commands.json. The version of this module should equal to the Redis version of the commands.
6+
7+
## Install
8+
9+
```shell
10+
$ npm install redis-commands
11+
```
12+
13+
## Usage
14+
15+
```javascript
16+
var commands = require('redis-commands');
17+
18+
Object.keys(commands).forEach(function (command) {
19+
console.log(command);
20+
});
21+
```

0 commit comments

Comments
 (0)