https://github.com/oppenjaimer/lbeldb.js
A text-based no-corruption database for Node.js. Easy to use. Made for beginners.
https://github.com/oppenjaimer/lbeldb.js
database npm
Last synced: 3 months ago
JSON representation
A text-based no-corruption database for Node.js. Easy to use. Made for beginners.
- Host: GitHub
- URL: https://github.com/oppenjaimer/lbeldb.js
- Owner: Oppenjaimer
- Created: 2020-08-31T11:20:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-02T20:03:34.000Z (over 5 years ago)
- Last Synced: 2025-07-07T11:41:19.965Z (12 months ago)
- Topics: database, npm
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LbelDB.js
[](http://unlicense.org/)
[](https://nodei.co/npm/lbeldb/)
A text-based no-corruption database for Node.js. Easy to use. Made for beginners.
## Installation
```sh
$ npm install lbeldb
```
## Usage
```js
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](https://github.com/JaimermXD/LbelDB.js/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](https://choosealicense.com/licenses/unlicense/) license.