Skip to content
Jaime Redondo edited this page Sep 1, 2020 · 1 revision

LbelDB.js

License: Unlicense

NPM

Welcome to the LbelDB.js documentation!

This is the Home page, where you can see how to install the package, an example on how to use it, information about contributing to its development and the license it is released under.

Installation

$ npm install lbeldb

Usage

const ldb = require("lbeldb");

ldb.init();
ldb.create(["name", "email", "employed"]);

ldb.addR(["Jaime", "jairegra@gmail.com", false]);
ldb.addR(["Rithul", "untenseunjury@gmail.com", false]);

ldb.store();

ldb.retrieve();

ldb.view();

Contributing

Pull requests are welcome. For major changes, open an issue first to discuss what you would like to change.

Please make sure to update tests appropriately.

License

Released under the Unlicense license.

Clone this wiki locally