bson vs msgpack vs json (v5)

Revision 5 of this benchmark created on


Preparation HTML

<script src="https://rawgithub.com/mongodb/js-bson/master/lib/bson/bson_new.js"></script>
<script src='https://rawgithub.com/msgpack/msgpack-javascript/master/msgpack.js'></script>

Setup

var obj = {a: 'testing', b: {a: 3, c: 4, d: 'testing'}};

Test runner

Ready to run.

Testing in
TestOps/sec
bson
BSON.serialize(obj);
ready
json
JSON.stringify(obj);
ready
msgpack
msgpack.pack(obj);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.