mongodb-extjson
Advanced tools
Changelog
2.1.1 (2018-04-01)
<a name="2.0.0"></a>
Methods now exist on a global instance of ExtJSON. Whereas previously the library was consumed as such:
const extJSON = require('mongodb-extjson');
const EJSON = new extJSON();
EJSON.parse(...);
it is now consumed thusly:
const EJSON = require('mongodb-extjson');
EJSON.parse(...);
binary: Removes out-of-box support for Binary serialization on web platforms. Users will have to polyfill node Buffer type
Library is now compliant with Extended JSON v2.0.0, and as such may not be compatible with v1.0.0 Extended JSON objects.
<a name="1.0.5"></a>