Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Created July 22, 2015 00:04
Show Gist options
  • Save gartenfeld/2c21f37afd54959532e1 to your computer and use it in GitHub Desktop.
Save gartenfeld/2c21f37afd54959532e1 to your computer and use it in GitHub Desktop.
Extracting POST data in Node as the pieces arrive in a buffer stream.
var data = '';
request.on('data', function (partial) {
data += partial;
});
request.on('end', function () {
data = JSON.parse(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment