morgan-body
Logging the way you always wanted it to be!

Example Use
Note: unlike typical express middleware you must pass the actual app into the function
import morganBody from 'morgan-body';
import express from 'express';
import bodyParser from 'body-parser';
const app = express();
app.use(bodyParser.json());
morganBody(app);

*Note: console output is colorized for iTerm2, might look odd on terminals with other background colors
API
morganBody(<express instance>, <options object>)
Options are:
{
maxBodyLength: (default: 1000), caps the length of the console output of a single request/response to specified length,
logRequestBody: (default: true), allows disabling of logging request body,
logResponseBody: (default: true), allows disabling of logging response body
}