ubjson

0.0.8 • Public • Published

Node-UBJSON

NPM version BS CS


Universal Binary JSON packer/unpacker for Node.js.

Check out the Github repo for the source code. Visit module site for API docs and examples. Extra information available in wiki.

Installation

You can install this module via npm:

$> npm install ubjson

Also you can build latest source code from repository, see below.

Usage example

// Preallocate buffer
var buffer = new Buffer(1024);
 
// Synchronous pack
var offset = UBJSON.packToBufferSync(jsonObject, buffer);
buffer = buffer.slice(0, offset);
 
// Asynchronous pack
UBJSON.packToBuffer({"key": "value"}, buffer, function (error, offset) {
  if (error) {
    throw error;
  }
 
  buffer = buffer.slice(0, offset);
 
  // Asynchronous unpack
  UBJSON.unpackBuffer(buffer, function (error, value) {
    if (error) {
      throw error;
    }
 
    done();
  });
});

Full API documentation.

Contributing

To contribute any patches, simply fork this repository using GitHub and send a pull request to me. Thanks!

All information about development use and contribution is placed in the DEVELOPMENT file.

License

MIT license. See license text in file LICENSE.

Package Sidebar

Install

npm i ubjson

Weekly Downloads

8

Version

0.0.8

License

none

Last publish

Collaborators

  • sannis