Currently supports only node v8.x.
node-gyp should be installed
$ npm install git+https://github.com/paulkarabilo/node-redis-native.git
var r = require('node-redis-native');
var client = new r.Client({
host: '127.0.0.1', //optional, default is 'localhost'
port: 6378, //optional, default is 6379
onError: function () {}
});
client.call("PING", function (err, reply) { console.log(reply); }); //PONG