h5.buffers
v0.1.1
Published
A set of classes to simplify and extend reading from and writing to node.js Buffers.
Downloads
320
Readme
h5.buffers
A set of classes to simplify and extend reading from and writing to node.js Buffers.
How to install
$ npm install h5.buffers
How to use
Require the module:
var buffers = require('h5.buffers');
Instantiate any class and look up its API:
var reader = new buffers.BufferReader(new Buffer(256));
var builder = new buffers.BufferBuilder();
var queueReader = new buffers.BufferQueueReader();
API
Check out JSDoc comment in source files or doc/ directory for API generated from these comments.
Examples
Check out example/ and spec/ directories.
Tests
To run tests, you'll need jasmine-node.
$ npm install -g jasmine-node
Run tests by executing the following command:
$ npm test h5.buffers
License
See License.md (it's MIT).