0.3.0 • Published 5 years ago

lbeldb v0.3.0

Weekly downloads
1
License
Unlicense
Repository
github
Last release
5 years ago

LbelDB.js

License: Unlicense

NPM

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", "jairegra@gmail.com", false]);
ldb.addR(["Rithul", "untenseunjury@gmail.com", 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.