Parse response bodies with generators based on co-body.
npm install fax-body
// application/json
var body = yield parse(req);
// explicit limit, defaults to 1mb
var body = yield parse(req, {limit: '10kb'});
fax has no notion of body parsing, so by moving it out into a module there can be custom body parsers for any type of content.