0.0.3 • Published 7 years ago

beeson v0.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

beeson

Transparent binary JSON-based serialization.

Why? Because none of the existing JSON-based binary libraries out there seem to support transparent serialization followed by deserialization, out of the box.

So I picked the one that was closest to what I needed and gave it that extra push.

var beeson = require('beeson');

var stuff = [undefined, null, new Date(), new Buffer('hello'), {a:1, b: null, c: 'hello', d: [], e: undefined}];

beeson.deserialize(beeson.serialize(stuff));
// Profit

install

with npm do:

npm install beeson

license

MIT