Home - Oppenjaimer/LbelDB.js GitHub Wiki
LbelDB.js
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", "[email protected]", false]);
ldb.addR(["Rithul", "[email protected]", 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.