beeson

0.0.3 • Public • Published

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

Package Sidebar

Install

npm i beeson

Weekly Downloads

3

Version

0.0.3

License

MIT

Last publish

Collaborators

  • mvaldesdeleon