lbeldb
v0.3.0
Published
A text-based no-corruption database for Node.js. Easy to use. Made for beginners.
Downloads
1
Readme
LbelDB.js
A text-based no-corruption database for Node.js. Easy to use. Made for beginners.
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();
Documentation
Check out the repository's wiki for a detailed documentation of the package.
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.