cential
v1.0.1
Published
## Description
Downloads
2
Readme
Cential
Description
A small database engine made for fun
Usage
[sudo] npm i cential
const { Storage } = require('cential');
const storage = new Storage();
storage.set('foo', 'bar'); // Create a key with data
storage.get() // all data from root engine
storage.get('foo') // a specific value from engine root
storage.set('foo', 'biz'); // update an value
storage.delete('foo'); // remove a specific node
Contribute
All discussions arround that problem are welcome to improve this engine