1.0.1 • Published 3 years ago

cential v1.0.1

Weekly downloads
8
License
ISC
Repository
github
Last release
3 years ago

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