bupper

2.0.0 • Public • Published

bupper

A Nodejs Buffer helper.

Installation

Use npm:

npm install bupper

Or add to your package dependencies:

{
  "dependencies": {
    "bupper": "*"
  }
}

Quick Start

Concat buffer chunks with .add(chunk) and output them together using .combine()

var Bupper = require('bupper');
var http = require('http');
http.createServer(function(req, res) {
  req.on('data', function(chunk) {
    Bupper.add(chunk);
  });
  req.on('end', function() {
    console.log( Bupper.combine().toString() )
  })
}).listen(80);

APIs

Concat chunks:

Bupper.add(chunk)

Output chunks:

Bupper.combine()

Todo

  • write a test

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i bupper

    Weekly Downloads

    1,499

    Version

    2.0.0

    License

    MIT

    Last publish

    Collaborators

    • shallker-wang