@yuanchuan/redis-commands
v0.0.4
Published
Redis commands implemented in javascript (learning purpose only)
Downloads
1
Readme
Redis-commands
Redis commands implemented in JavaScript.
** NOTICE ** This is just an experimental project for fun and learning. I don't expect it to be useful anyway.
Installation
$ npm install @yuanchuan/redis-commands
Example
var Redis = require('@yuanchuan/redis-commands');
var R = new Redis();
R.set('mykey', 'hello');
R.get('mykey');
##TODO
- Sorted-sets
- More tests
- Optimize
- Migrate to browser
License
MIT