$ npm install json-storage-fs
json-storage-fs is a very lightweight package with no dependencies that was designed for small Node.js applications
Example:
const { JsonStorage, config } = require('json-storage-fs');
// (optional set catalog path)
config({ catalog: '/tmp/meow'});
JsonStorage.set('name', 'Alice');
const name = JsonStorage.get('name');
console.log(name); // -> 'Alice'
Get value from key
static get(key: string): any|undefined
Set value
static set(key: string, data: any): void
Delete value by key
static delete(key: string): void
Get all high-level keys
static getAllKeys(): string[]
Clear storage
static clearAll(): void