kvx
v0.0.1
Published
Distributed key/value store abstraction library for Node.js
Downloads
5
Readme
kvx
Distributed key/value store abstraction library for Node.js
Install
$ npm install kvx --save
Usage
import kvx from 'kvx';
const kv = kvx('consul');
async function test() {
const key = 'hello';
const value = 'world';
await kv.put(key, value);
const pair = await kv.get(key);
const pairs = await kv.list(key);
const watcher = kv.watch(key);
watcher.on('change', (err, data) => {
console.log(data);
watcher.end();
});
}
Report a issue
Reference
- https://github.com/docker/libkv
- https://github.com/ekristen/node-libkv
License
kvx is available under the terms of the MIT License.