@keyv/etcd

Table of Contents

Etcd storage adapter for Keyv

build codecov npm

Etcd storage adapter for Keyv.

Install

npm install --save keyv @keyv/etcd
    

Usage

import Keyv from 'keyv';
    import KeyvEtcd from '@keyv/etcd';
    
    const keyv = new Keyv(new KeyvEtcd('etcd://localhost:2379'));
    keyv.on('error', handleConnectionError);
    

License

MIT © Jared Wray

Table of Contents