Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mvaldesdeleon/beeson

Transparent binary JSON-based serialization
https://github.com/mvaldesdeleon/beeson

Last synced: about 6 hours ago
JSON representation

Transparent binary JSON-based serialization

Awesome Lists containing this project

README

        

# 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.

```JS
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](https://npmjs.org) do:

```
npm install beeson
```

# license

MIT