kvx

0.0.1 • Public • Published

kvx

Distributed key/value store abstraction library for Node.js

NPM version NPM downloads Build Status Coverage Status Dependency Status Greenkeeper badge


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

License

kvx is available under the terms of the MIT License.

Package Sidebar

Install

npm i kvx

Weekly Downloads

2

Version

0.0.1

License

MIT

Unpacked Size

14 kB

Total Files

9

Last publish

Collaborators

  • d-band