stream-frame

0.0.6 • Public • Published

StreamFrame Build Status

NPM

StreamFrame is a stream framing library for node.js.

Install

npm install stream-frame --save

Installing the latest version

$ npm install git+https://github.com/majimboo/stream-frame.git

Usage

var StreamFrame = require('stream-frame');

var server = net.createServer(function (socket) {
  var B = new StreamFrame();
  B.wrap(socket);

  B.on('data', function(data) {
    console.log(data);
  });
});

You can also pass the socket as a parameter of StreamFrame().

var B = new StreamFrame(socket);
B.on('data', data_handler);

Options

  • lengthSize (default: 2) - The length in bytes of the prepended message size.
  • bigEndian (default: false) - The byte order of the prepended length.
  • offset (default: 0) - The offset where the packet size can be found.
  • ignore (default: false) - Will not try to frame the message.
var StreamFrame = require('stream-frame');
var B = new StreamFrame();

B.set('lengthSize', 1); // uint8
B.set('lengthSize', 2); // uint16
B.set('lengthSize', 4); // uint32

B.set('offset', 2);    // size starts at 3rd byte.
B.set('ignore', true); // will emit data immedietely without framing.

B.set('bigEndian', true);  // uses bigEndian order
B.set('bigEndian', false); // uses default little endian order

Benchmark

v 0.0.3
StreamFrame x 623,238 ops/sec ±1.72% (87 runs sampled)

v 0.0.4
StreamFrame x 886,578 ops/sec ±0.56% (90 runs sampled)

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i stream-frame

    Weekly Downloads

    9

    Version

    0.0.6

    License

    MIT

    Last publish

    Collaborators

    • majidarif