2.0.0 • Published 6 years ago

3h-join v2.0.0

Weekly downloads
33
License
MIT
Repository
github
Last release
6 years ago

3h-join

A stream body parser.

Example

const join = require('3h-join');

function callback(err, data) {
    if (err) {
        console.error('Error while reading stream: ', err);
    } else {
        console.log(`Received: ${JSON.stringify(data)}`);
    }
}

join.text({ stream: textStream }, callback);

join.json({
    stream: jsonStream,
    // parser: myJSONParser
}, callback);

join.form({
    stream: formStream,
    // parser: myFormParser
}, callback);

APIs

See the declaration file to learn the APIs.