Read any huge file , supports more the node's heap size
Update : Caching will be added in next update , to reduce read operation on disk
Install package directly fom npm ,
npm install jsonbase-storeEither specify file path or new file will be created in current working directory
var store = require('jsonbase-store')('./db');await store.insert("1", { 'key' : 'value' },1000);await store.update("1", { 'key' : 'value' });await store.update("1");await store.update("1");