This package has been deprecated

Author message:

Update your project to use a more fast and robust key-value manager konfiger<https://www.npmjs.com/package/konfiger>

@thecarisma/key-value-db

1.1.6 • Public • Published

key-value-db-nodejs
key-value-db-nodejs

Light weight package to quickly and easily manage, load, update and save key-value type database


The sample use cases of this package is loading configuration file, language file, preference setting in an application. More use cases can be seen here.

The package does not do any Input and Output operation as there are several way to read and write to file and the methods has their strength and weakness therefore the developer has to find the efficient way to load and save locally.


Table of content

Installation

Module name on npm and bower is @thecarisma/key-value-db.

Using npm:

npm install @thecarisma/key-value-db

Using bower:

bower install @thecarisma/key-value-db

Using yarn:

yarn add @thecarisma/key-value-db

Example

The following example load, update, read and remove a simple key value object

const KeyValueDB = require("@thecarisma/key-value-db");

//initialize the key-value 
var keyValueDB = new KeyValueDB.KeyValueDB("Greet=Hello World,Project=KeyValueDB", true, '=', ',', false);

//get an object
console.log(keyValueDB.get("Greet"));

//remove an object
keyValueDB.remove("Greet");

//add an object
keyValueDB.add("What", "i don't know what to write here");

//print all the objects
for (var kvo of keyValueDB) {
	console.log('$' + kvo);
};

Legends

kvp  - Key Value Pair
kvdb - Key value Database
pss  - Possibly
kvo  - Key Value Object

API

Even though JavaScript is weakly type the package does type checking to ensure wrong datatype is not passed into the method.

Creating/loading a document

You can use the package to update and create an existing key value database. This library does not read the database from a file which means you have to find a way to read a string from the file.

Create a new keyValueDB. The default seperator between the key and value is = and the delimeter between the kvp is \n(newline).

var keyValueDB = new KeyValueDB.KeyValueDB();

To load existing KeyValueDB

var keyValueDB = new KeyValueDB.KeyValueDB(
        "Greet=Hello World,Project=KeyValueDB", //pss read string from file
        true, //case sensitive is true
        '=', //the seperator from key and value
        ',', //the delimeter for the key-value-pair
        false //error tolerance if true no exception is thrown
        );

Inserting Data

The only accepted type that can be inserted is a valid KeyValueObject and String. The method add can be used to add a new kvp into the object.

Add a kvp with it key and value

keyValueDB.add("Greet", "Hello World");

Add a kvp using the KeyValueObject class.

const keyValueObject = new KeyValueDB.KeyValueObject("Greet", "Hello World");
keyValueDB.add(keyValueObject);

Finding Data

There are several way to find and get a value from the kvdb object. The value or the KeyValueObject can be gotten using the methods below

Get KeyValue Object

You can get the kvo using either the key or index. If the corresponding kvo is not found, an empty kvo is added to the db and then returned but not in the case when requested with the integer index. If a fallback kvo is sent as second parameter then when the request kvo is not found the fallback second parameter is added to the kvdb and then returned.

Get the kvo using it integer index

keyValueDB.getKeyValueObject(0);
//KeyValueObject {hashcode: 69066473, key: "Greet", value: "Hello World"}

Get the kvo using it key

keyValueDB.getKeyValueObject("Greet");
//KeyValueObject {hashcode: 69066473, key: "Greet", value: "Hello World"}

Get the kvo using it key with fallback kvo

const keyValueObject = new KeyValueDB.KeyValueObject("Name", "Adewale Azeez");
keyValueDB.getKeyValueObject("Name", keyValueObject);
//KeyValueObject {hashcode: 765363576, key: "Name", value: "Adewale Azeez"}

Get Like KeyValue Object

Get a kvo by checking the kvdb for the kvo object that contains a part of the key. If a fallback kvo is sent as second parameter then when the request kvo is not found the fallback second parameter is added to the kvdb and then returned.

Get a similar kvo using it key part

keyValueDB.getLikeKeyValueObject("eet");
//KeyValueObject {hashcode: 69066473, key: "Greet", value: "Hello World"}

Get a similar kvo using it key part with fallback kvo

const keyValueObject = new KeyValueDB.KeyValueObject("Name", "Adewale Azeez");
keyValueDB.getKeyValueObject("Nam", keyValueObject);
//KeyValueObject {hashcode: 765363576, key: "Name", value: "Adewale Azeez"}

Get

You can get a kvdb value using either the key or index. If the corresponding value is not found, an empty string is added to the db and then returned but not in the case when requested with the integer index.

If a fallback kvo is sent as second parameter then when the request key is not found the fallback second parameter is added to the kvdb and then value is returned. If a string value is sent as the second value it is returned if the key is not found in the kvdb.

Get a value using it integer index

keyValueDB.get(0);
//"Hello World"

Get the value using it key

keyValueDB.get("Greet");
//"Hello World"

Get the kvo using it key with fallback value

keyValueDB.get("Licence", "The MIT Licence");
//"The MIT Licence"

Get the kvo using it key with fallback kvo

const keyValueObject = new KeyValueDB.KeyValueObject("Licence", "The MIT Licence");
keyValueDB.get("Name", keyValueObject);
//"The MIT Licence"

Get Like

Get a value by checking the kvdb for the kvo object that contains a part of the key.

If a fallback kvo is sent as second parameter then when the request key is not found the fallback second parameter is added to the kvdb and then value is returned.

Get a value using it key part

keyValueDB.getLike("eet");
//"Hello World"

Get a value using it key part with fallback kvo

const keyValueObject = new KeyValueDB.KeyValueObject("Licence", "The MIT Licence");
keyValueDB.getLike("Li", keyValueObject);
//"The MIT Licence"

Updating Data

There are various way to update a kvp in the kvdb, the value can be changed directly or set to a new KeyValueObject. If you try to set a kvo that does not exist in the kvdb using it key, it is added to the kvdb.

Set

The set method is used to change the value of the kvo using the index of the kvo or a kvo key.

Set a kvo value using it index

keyValueDB.set(0, "Hello World from thecarisma");
//KeyValueObject {hashcode: 69066473, key: "Greet", value: "Hello World from thecarisma"}

Set a kvo value using it key

keyValueDB.set("Greet", "Hello World from thecarisma");
//KeyValueObject {hashcode: 69066473, key: "Greet", value: "Hello World from thecarisma"}

Set KeyValue Object

Completly change a KeyValueObject in the kvdb using either it index or it key. The kvo is completly replaced which means unique fields like the hashcode of the kvo changes. When the kvo is set using it key if the corresponding kvo does not exist it is added into the kvdb. Note that this method completly changes the kvo so it can be used to replace a kvo.

Set a kvo using it index

const keyValueObject = new KeyValueDB.KeyValueObject("Licence", "The MIT Licence");
keyValueDB.setKeyValueObject(0, keyValueObject);
//KeyValueObject {hashcode: 566565, key: "Licence", value: "The MIT Licence"}

Set a kvo value using it key

const keyValueObject = new KeyValueDB.KeyValueObject("Licence", "The MIT Licence");
keyValueDB.setKeyValueObject("Greet", keyValueObject);
//KeyValueObject {hashcode: 566565, key: "Licence", value: "The MIT Licence"}

Inserting Data

A new kvp can be inserted by invoking the add method. The kvp can be added using it key and value or by directly adding the KeyValueObject to the kvdb.

Add a new kvp using the key and value

keyValueDB.add("Key", "This is the value");

Add a new kvp using a new KeyValueObject

const keyValueObject = new KeyValueDB.KeyValueObject("Key", "This is the value");
keyValueDB.add(keyValueObject);

Removing Data

Remove a kvp completely from the kvdb using either it key of the integer index. The kvp that was removed is returned from the method. If the index does not exist out of bound error occur and if a kvo with the key is not present nothing is done but an empty kvo is returned.

Remove a kvp using integer index

keyValueDB.remove(0);
//removes the first kvp in the kvdb
//KeyValueObject {hashcode: 69066473, key: "Greet", value: "Hello World"}

Remove a kvp using it key

keyValueDB.remove("Greet");
//removes the first kvp in the kvdb
//KeyValueObject {hashcode: 69066473, key: "Greet", value: "Hello World"}

Size, Clear, isEmpty

Size

Get the size of the kvo in the kvdb.

keyValueDB.size();
//4

Clear

Remove all the elements and kvo from the kvdb

keyValueDB.clear();
//keyValueDB.size() = 0

isEmpty

Check whether the kvdb contains any kvo in it.

keyValueDB.isEmpty();
//false

Saving collection

The kvp collection kvdb can be inspected as a string using the toString method. The returned value can be saved locally by writing to a persistent storage or to a plain text file. The output of the toString method is determined by the kvos, the seperator and the delimeter.

keyValueDB.toString();
// "Greet=Hello World,Project=KeyValueDB,Project=KeyValueDB,Licence=The MIT Licence"

Iterating collection

The KeyValueDB object can be iterated natively using the for..of loop expression.

for (var kvo of keyValueDB) {
    //operate on the KeyValueObject
};

How it works

KeyValueObject class contains the key and value field and the fields setter and getter. The KeyValueObject is the main internal type used in the KeyValueDB class.

In KeyValueDB the key value pair is stored in Array[] type, all search, updating and removal is done on the keyValueObjects in the class. The string sent as first parameter if parsed into valid key value using the separator and delimiter fields. The toString method also parse the keyValueObjects content into a valid string with regards to the separator and delimeter.

Contributing

Before you begin contribution please read the contribution guide at CONTRIBUTING GUIDE

You can open issue or file a request that only address problems in this implementation on this repo, if the issue address the concepts of the package then create an issue or rfc here

Support

You can support some of this community as they make big impact in the developement of people to get started with software engineering.

License

MIT License Copyright (c) 2019 Adewale Azeez - keyvaluedb

Package Sidebar

Install

npm i @thecarisma/key-value-db

Weekly Downloads

8

Version

1.1.6

License

MIT

Unpacked Size

33.4 kB

Total Files

8

Last publish

Collaborators

  • thecarisma