kvs-abstract
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "kvs-abstract", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "An abstract helper for all types of KVS backends", | ||
@@ -5,0 +5,0 @@ "main": "abstract.js", |
# KVS - Abstract | ||
[KVS](http://npmjs.org/package/kvs) or *K*ey *V*alue *S*tore is an abstract KeyValueStore system. The *kvs-** group of node modules, are intended to present a unified interface to key value stores of every persuasion. This allows for substituting them without changing anything but the initializing parameters. | ||
[KVS]((http://npmjs.org/package/kvs-base)) or *K*ey *V*alue *S*tore is an abstract KeyValueStore system. The *kvs-** group of node modules, are intended to present a unified interface to key value stores of every persuasion. This allows for substituting them without changing anything but the initializing parameters. | ||
@@ -13,6 +13,6 @@ *KVS-Abstract* itself is the abstract base class for any of the modules in the group. Unless you intend to implement a KVS compliant module, you will have no use for this module. | ||
store.list('name', function(err, value) { … }); | ||
## User of KVS-Abstract | ||
var Abstract = require('kvs-abstract'); | ||
Abstract.bequeath(MyBackend); | ||
@@ -19,0 +19,0 @@ function MyBackend() { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6141