Socket
Socket
Sign inDemoInstall

etcd3

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

etcd3 - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

proto/auth.proto

4

changelog.md

@@ -0,1 +1,5 @@

## 1.0.1 2020-06-21
- **fix:** `proto` files not included in npm package
## 1.0.0 2020-06-21

@@ -2,0 +6,0 @@

2

package.json
{
"name": "etcd3",
"version": "1.0.0",
"version": "1.0.1",
"description": "Node client for etcd3",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

# etcd3 [![Run Tests](https://github.com/microsoft/etcd3/workflows/Run%20Tests/badge.svg)](https://github.com/microsoft/etcd3/actions?query=workflow%3A%22Run+Tests%22)
etcd3 aims to be (with its first stable release) a high-quality, production-ready client for the Protocol Buffer-based etcdv3 API. It includes [load balancing](https://microsoft.github.io/etcd3/interfaces/options_.ioptions.html), [reconnections](https://microsoft.github.io/etcd3/interfaces/options_.ioptions.html#backoffstrategy), [transactions](https://microsoft.github.io/etcd3/classes/builder_.comparatorbuilder.html), [software transactional memory](https://microsoft.github.io/etcd3/classes/etcd3.html#stm), [high-level query builders](https://microsoft.github.io/etcd3/classes/etcd3.html#delete) and [lease management](https://microsoft.github.io/etcd3/classes/lease_.lease.html), [watchers](https://microsoft.github.io/etcd3/classes/watch_.watchbuilder.html), [mocking](https://microsoft.github.io/etcd3/classes/etcd3.html#mock), and is type-safe for TypeScript consumers.
etcd3 aims to be (with its first stable release) a high-quality, production-ready client for the Protocol Buffer-based etcdv3 API. It includes:
- [load balancing](https://microsoft.github.io/etcd3/interfaces/ioptions.html)
- [fault handling and reconnections](https://microsoft.github.io/etcd3/interfaces/ioptions.html#faulthandling)
- [transactions](https://microsoft.github.io/etcd3/classes/comparatorbuilder.html)
- [software transactional memory](https://microsoft.github.io/etcd3/classes/softwaretransaction.html)
- [high-level query builders](https://microsoft.github.io/etcd3/classes/etcd3.html)
- [lease management](https://microsoft.github.io/etcd3/classes/lease.html)
- [watchers](https://microsoft.github.io/etcd3/classes/watchbuilder.html)
- [user](https://microsoft.github.io/etcd3/classes/etcd3.html#user) and [role](https://microsoft.github.io/etcd3/classes/etcd3.html#role) [mocking](https://microsoft.github.io/etcd3/classes/etcd3.html#mock) management
and is type-safe for TypeScript consumers.
### Quickstart

@@ -13,3 +24,3 @@

Start CRUD-ing!
Start building!

@@ -20,3 +31,3 @@ ```js

(() => {
(async () => {
await client.put('foo').value('bar');

@@ -27,7 +38,7 @@

const allFValues = client.getAll().prefix('f').keys()
const allFValues = await client.getAll().prefix('f').keys();
console.log('all our keys starting with "f":', allFValues);
await client.delete().all();
})
})();
```

@@ -34,0 +45,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc