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.6
  • Source
  • npm
  • Socket score

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

Burro

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

Example

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

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

// 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) {
  var str = obj.from + " says: " + obj.message + "\n";
  this.push(str);
  done();
};

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

Output

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

Tests

requires: npm install mocha

Burro is a pretty versatile beast and can even handle very large payloads. See the tests for more details.

Keywords

FAQs

Package last updated on 10 Mar 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