v3.2.0
New Commands
SCAN command (#334 @DrMegavolt)
redis
.scan(0, 'MATCH', 'foo*', 'COUNT', 1)
.then(result => console.log(result))LRANGE command (#335 @sseidametov)
redis
.lrange('myKey', 0, 2)
.then(result => console.log(result))redis
.scan(0, 'MATCH', 'foo*', 'COUNT', 1)
.then(result => console.log(result))redis
.lrange('myKey', 0, 2)
.then(result => console.log(result))