Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

burro

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

burro

auto-packaged, length-prefixed JSON byte streams

  • 0.4.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
increased by125%
Maintainers
1
Weekly downloads
 
Created
Source

Burro build status

Burro is a useful creature that auto-packages objects in length-prefixed JSON byte streams.

Overview

Burro is made up of 4 streams that makes sending/receiving objects a breeze

Sender streams:

  • burro.Encoder - encodes objects into proper JSON strings
  • burro.Framer - frames JSON in a uint32be length-prefixed buffer

Receiver streams:

  • burro.Unframer - processes length prefix and parses out JSON
  • burro.Decoder - decodes JSON into objects

Example

var burro  = require("burro"),
    stream = require("stream");

// dummy network stream
var network = new stream.PassThrough();
    
// wrap! auto encode/decode json frames
var socket = burro.wrap(network);

// send data
socket.write({message: "どもうありがとう!", from: "japan", to: "usa"});
socket.write({message: "thank you!", from: "usa", to: "japan"});

// dummy parser; extracts message from payload
var parser = new stream.Transform({objectMode: true});
parser._transform = function _transform (obj, encoding, done) {
  this.push(obj.from + " says: " + obj.message + "\n");
  done();
};

// cross the streams!
socket.pipe(parser).pipe(process.stdout);

Output

japan says: どもうありがとう!
usa says: thank you!

Installation

Available via npm:

$ npm install burro

Or via git:

$ git clone git://github.com/naomik/burro.git node_modules/burro

API

wrap

This is burro's easy mode. It will automatically construct the entire burro chain around your existing duplex stream. If you want to configure the burro chain manually, please see lib/burro.js

var socket = burro.wrap(duplexStream);

Arguments

  • duplexStream - an object implementing the stream.Duplex API. It must have the following functions defined: _read, _write, pipe, unpipe.

Tests

Burro is a pretty versatile beast and can even handle very large payloads. It is also tested against network packet fragmenting and buffering, thanks to hiccup. See the tests for more details.

Development dependencies:

$ npm install mocha

$ npm install hiccup

Keywords

FAQs

Package last updated on 21 Jun 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc