@keyv/etcd 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # @keyv/mongo [<img width="100" align="right" src="https://jaredwray.com/images/keyv.svg" alt="keyv">](https://github.com/jaredwra/keyv)
2
+
3
+ > Etcd storage adapter for Keyv
4
+
5
+ [![build](https://github.com/jaredwray/keyv/actions/workflows/tests.yaml/badge.svg)](https://github.com/jaredwray/keyv/actions/workflows/tests.yaml)
6
+ [![codecov](https://codecov.io/gh/jaredwray/keyv/branch/master/graph/badge.svg?token=bRzR3RyOXZ)](https://codecov.io/gh/jaredwray/keyv)
7
+ [![npm](https://img.shields.io/npm/v/@keyv/etcd.svg)](https://www.npmjs.com/package/@keyv/etcd)
8
+
9
+ Etcd storage adapter for [Keyv](https://github.com/jaredwray/keyv).
10
+
11
+ ## Install
12
+
13
+ ```shell
14
+ npm install --save keyv @keyv/etcd
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ ```js
20
+ const Keyv = require('keyv');
21
+
22
+ const keyv = new Keyv('etcd://localhost:2379');
23
+ keyv.on('error', handleConnectionError);
24
+ ```
25
+
26
+ ## License
27
+
28
+ MIT © Jared Wray & Luke Childs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keyv/etcd",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Etcd storage adapter for Keyv",
5
5
  "main": "src/index.js",
6
6
  "scripts": {