Skip to content

v0.11.2

Compare
Choose a tag to compare
@typicode typicode released this 25 Dec 16:38
· 374 commits to main since this release

Add Promise support for storage.read. This makes possible to have fully asynchronous db creation.

const low = require('lowdb')
const storage = require('some-promise-based-storage')

low(source, { storage }).then(db => {
  // db is ready
})