Skip to content

v0.16.0

Compare
Choose a tag to compare
@typicode typicode released this 09 Mar 11:59
· 240 commits to main since this release

In this release, json-parse-helpfulerror is not included by default anymore due to issues with WebPack #153.

That said, you can still configure lowdb to use it:

const low = require('lowdb')
const jph = require('json-parse-helpfulerror');

const db = low('db.json', {
  format: {
    stringify: JSON.stringify,
    parse: jph.parse
  }
})