ghostdb
v1.0.5
Published
simple lodash based JSON db
Downloads
3
Maintainers
Readme
Ghost DB
Simple lodash based JSON DB
Installation
$ yarn add ghostdb # yarn
$ npm install -s ghostdb # npm
Usage
const GhostDB = require('ghostdb');
const path = require('path');
const filePath = ""; // Filepath
const db = GhostDB(filePath);
db.then(store => {
// Store has all the lodash calls
console.log(store);
});