0.0.1 • Published 8 years ago

cosBuffer v0.0.1

Weekly downloads
3
License
-
Repository
github
Last release
8 years ago

cosBuffer - a node.js buffer api

Install with:

npm install cosBuffer

Usage

Simple example, included as test.js:

    var cosBuff = require('./')();
    cosBuff.incHeader = true;
    var buf = cosBuff.packet('chat','this is a message');
    var msg = cosBuff.parse(buf);
    console.log('Type:',msg.type);
    console.log('Data:',msg.data);

Demo

test.js