Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 644 Bytes

README.markdown

File metadata and controls

35 lines (23 loc) · 644 Bytes

redic.js

Inspired from Redic

usage

var redic = require('redic');
var client = redic.connect(10001, 'localhost');

client.call(['AUTH', 'test'], function(err, res) {
    console.log(err, res);

    client.call(['SET', 'foo', 'bar'], function(err, res) {
        client.call(['GET', 'foo'], function(err, res) {
            console.log(err, res);
        
            client.call(['QUIT']);
        });
    });
});

why?

an initial attempt for a simpler Redis client for node.

roadmap

  • remove hiredis? (because of compatibility with node 0.11.x)
  • more testing

license

MIT