1.0.1 • Published 8 months ago

mysimpledb v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

mysimpledb

A lightweight, JSON-based database module for Node.js

Features

  • Get, set, delete, list keys
  • Get size
  • Clear database

Installation

npm install mysimpledb

Usage

const Database = require('mysimpledb');

const db = new Database('mydb.json');
await db.set('key', 'value');
console.log(await db.get('key'));
1.0.1

8 months ago

1.0.0

8 months ago