simple lodash based JSON db
npm install ghostdbSimple lodash based JSON DB
``bash`
$ yarn add ghostdb # yarn
$ npm install -s ghostdb # npm
`js
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);
});
``