bson-util

Parse / Stringify bson documents

Usage no npm install needed!

<script type="module">
  import bsonUtil from 'https://cdn.skypack.dev/bson-util';
</script>

README

bson-util

bson-util is a super light (0.5K) and fast circular JSON and BSON serializer and parser. This package is supported on all browsers

Install

npm install bson-util

Features

  • stringifies and parses json documents
  • Observe the structural differences between two objects.
  • Supports different result structure based on different needs such as Restful APIs, or MongoDB patches.

Importing

nodejs

// ESM
import {parse, stringify} from 'bson-util';

// CJS
const {parse, stringify} = require('bson-util');

Examples

You can find more samples in main.test.ts.

let A: any = {b: new ObjectID(), c: 1};
A.a = A;

let newA = parse(stringify(A, true), true);
// newA == A