A speedy implementation of the MessagePack serialization protocol, written from scratch in C++.
MessagePack offers significant advantages over other serialization protocols, such as JSON, as it encodes objects very compactly. For example, the following object:
var o = {
a: {
b: -123,
c: 123
},
d: [
"Augustine",
"Emma",
"Shai",
"Leea"
]
};
Is packed into 39 bytes by msgpack3
, and 63 bytes by the native JSON library.
In this specific case, MessagePack was around 60% more space efficient. However,
these kinds of savings are quite typical. In general, MessagePack messages are
significantly more space efficient than JSON.
At the moment, this implementation of MessagePack is NOT faster
than node's native JSON library. However, it is (marginally) faster than other
msgpack libraries for node.js, such as [msgpack2](https://github.com/JulesAU/nod
e-msgpack), at least in the benchmark I used (see bench/bench.js
).
For specifics, see the TODO.md
file.
It's on npm
:
$ npm install msgpack3
msgpack3
provides two functions, pack
and unpack
which, respectively,
serialize and deserialize javascript objects.
Takes a javascript object as input and returns a buffer.
Takes a buffer as input and returns a javascript object.
See the source code for more details.
var msgpack = require("msgpack3"),
assert = require("assert);
var a = { a: 123, b: [1, 2, 3] }
var buf = msgpack.pack(o);
var b = msgpack.unpack(buf);
assert.deepEqual(a, b);
(The MIT License)
Copyright (C) 2012 by Siddharth Mahendraker
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.