AppReports/lib/api/dump.js

8 lines
214 B
JavaScript
Raw Normal View History

2020-08-22 12:41:47 +02:00
module.exports = (req,res,next) => {
console.log(req.method, req.originalUrl);
console.log(JSON.stringify(req.headers));
console.log('');
console.log(JSON.stringify(req.body, null, 2));
next();
};