json-storage-fs
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

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

/json-storage-fs/

    Package Sidebar

    Install

    npm i json-storage-fs

    Weekly Downloads

    1

    Version

    2.0.2

    License

    Apache-2.0

    Unpacked Size

    16.2 kB

    Total Files

    6

    Last publish

    Collaborators

    • lapkoshka