onbody

0.0.1 • Public • Published

onBodyMiddleware

BuildStatus Coverage Status NPM version

This is a simple connect middleware for getting an http request's body as a buffer or string because I got tired of doing it manually.

This middleware adds an onBody function to the req and calls back when done.

The onBody function takes a callback in the form

function(err, body){ ...

...where err is an error that may have occurred and body is the entire body of the request.

onBodyMiddleware is useful for any scenario where the streaming interface is unnecessary (basically anytime you need the entire body before you can do any processing).

Setup:

var onBodyMiddleware = require('onBodyMiddleware');
connectApp.use(onBodyMiddleware);

Use:

  function(req, res){
    req.onBody(function(err, body){
      if (err){
        res.end(JSON.stringify(err));
      } else {
        console.log(body);
        res.end("nice body!");
      }
    });
  }
 

/onbody/

    Package Sidebar

    Install

    npm i onbody

    Weekly Downloads

    2

    Version

    0.0.1

    License

    BSD

    Last publish

    Collaborators

    • cainus