Skip to content

Instantly share code, notes, and snippets.

@juliangruber
Created March 1, 2013 06:36
Show Gist options
  • Save juliangruber/5062850 to your computer and use it in GitHub Desktop.
Save juliangruber/5062850 to your computer and use it in GitHub Desktop.
var chunks = [];
req.on('data', function (chunk) { chunks.push(chunk) });
req.on('end', function () {
var body = Buffer.concat(chunks);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment