import db from 'nedb-promises' const dbfile = 'example/history.db' const history = db.create(dbfile) ; (async function () { console.log(await history.find({ time: { $gt: 1 } })) })()