Popularity
8.5
Stable
Activity
0.0
Stable
17
7
30

Monthly Downloads: 92
Programming language: Haskell
License: Apache License 2.0
Tags: Data     Bson    
Latest version: v0.4.0.1

bson alternatives and similar packages

Based on the "bson" category.
Alternatively, view bson alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of bson or a related project?

Add another 'bson' Package

README

bson-haskell Build Status

Haskell library for the encoding and decoding BSON documents, which are JSON-like objects with a standard binary encoding, defined at http://bsonspec.org. This library implements version 1 of that spec.

A BSON Document is an untyped (dynamically type-checked) record. I.e. it is a list of name-value pairs, where a Value is a single sum type with constructors for basic types (Bool, Int, Float, String, and Time), compound types (List, and (embedded) Document), and special types (Binary, Javascript, ObjectId, RegEx, and a few others).