wedis
simple redis implementation as node lib
Installation
npm install wedis
Get Started
const Wedis = require('wedis')
const client = new Wedis
client.setAsync('key', 'value')
client.getAsync('key').then(value=>console.log(value))
client.zaddAsync('key', 'score', 'value')
client.hsetnxAsync('key', 'sub-key', 'value')
// gracefully shutdown
client.store.stop().then(()=>{console.log('Stopped')})