Skip to content

v1.0.0

Compare
Choose a tag to compare
@Belphemur Belphemur released this 24 Jun 19:03
· 1763 commits to master since this release

1.0.0 (2019-06-24)

Features

  • Packaging: Use es6 module packaging (f5cd8fd)

BREAKING CHANGES

  • Packaging: The default export has been removed. You need to do a deconstruction import to load the library now.

import JsonDB from 'node-json-db'
becomes
import {JsonDB} from 'node-json-db'