BSON to JSON
This page does not decode BSON — it's a binary format that can't be meaningfully pasted as text, so decoding it needs a real BSON library running outside the browser's text-input model. Gives exact commands for real tools instead.
- 1Copy the Node.js, Python, or online-tool command shown on the page
- 2Run it against your BSON file
Related Tools
JSON to CSV
Convert a JSON array of objects into CSV, with column headers taken from the keys of the first object.
XML to JSON
Convert XML into JSON using your browser's real XML parser (DOMParser) — a genuine XML parse, not a regex approximation, with clear invalid-XML error messages.
YAML to JSON
Convert YAML to JSON using a hand-written indentation-based parser supporting basic key-value pairs and nesting — not the full YAML spec (no lists, anchors, or multi-line strings).
INI to JSON
Convert INI configuration text into JSON, with [section] headers becoming nested objects and key=value lines becoming their properties.