2.0.2 • Published 3 years ago

json-storage-fs v2.0.2

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
3 years ago

json-storage-fs - Simple key-value storage based on JSON for Node.js

npm package

Installation

$ npm install json-storage-fs

Simple to use

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'

API

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
2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.1.0

4 years ago

1.0.0

4 years ago