0.1.5 • Published 6 years ago

wedis v0.1.5

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

wedis

NPM Version NPM Downloads Build Status Test Coverage

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')})
0.1.5

6 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago