UNPKG

dyson

Version:

Node server for dynamic, fake JSON.

11 lines (10 loc) 213 B
module.exports = ({ property = 'rawBody' } = {}) => (req, res, next) => { let data = ''; req.on('data', chunk => { data += chunk; }); req.on('end', () => { req[property] = data; }); next(); };