-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Jaime Redondo edited this page Sep 1, 2020
·
1 revision
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.
$ npm install lbeldb
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();
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.
Released under the Unlicense license.