deranged-express-request-logger
v0.0.1
Published
Express request logging --- by deranged
Downloads
4
Readme
express-request-logger
This is the request logger used by deranged in a bunch of projects that use express. It is a piece of middleware that can be quickly dropped in:
var requestLogging = require("deranged-express-request-logger");
app.use(requestLogging);
It logs the contents of incoming requests and the resulting response.
Right now it uses console.log, but this should be made modifiable in the future.