@naira0/jstore
v1.0.5
Published
A blazing fast formatted text storage library.
Downloads
4
Readme
jstore
A blazing fast formatted text storage library.
Install
npm install @naira0/jstore
sadly jstore was taken so i had to add my username to it.
Usage & format
Disclaimer: this is not a database.
For more info check out the wiki
Usage:
const Jstore = require('@naira0/jstore');
const jstore = new Jstore('data');
jstore.set('settings', 'fullscreen', true);
const fullscreen = jstore.get('settings', 'fullscreen');
console.log(fullscreen); // Output: True
jstore file output
[settings]
fullscreen = true