express-request-logger

0.0.3 • Public • Published

express-request-logger

An easy way to create a key/value pair list to be logged on each request in express.

Installation

$ cd /path/to/your/project
$ npm install express-request-logger

Usage

This package is meant to be used as middleware for a web app using Express. It will allow you to create a key/value pair list of data to get logged per request. Using this it can output data to allow you to analyze how your web app is being used.

Middleware Setup

Since response time is a part of the logging output, express-request-logger should be put as early in the middleware chain as possible.

var winston   = require('winston');
var reqLogger = require('express-request-logger');
 
var logger = new (winston.Logger)({ transports: [ new (winston.transports.Console)() ] });
app.use(reqLogger.create(logger));

Middleware Usage

The req object will now have a kvLog object that can have extra data added to it. At the end of the request it will be logged with all the other data collected.

function (req, res, next) {
  // ...
  req.kvLog.action = 'test';
  // ...
}

The key message is special, it will be removed from the object and be sent to the logger as the true message. It is optional, so if it is not included, the log will just contain an empty message.

Dependencies

Currently it is recommended to use winston as the logger object, but any object that can be called like loggerObj.log(level, message, {key: value}) will work.

Readme

Keywords

none

Package Sidebar

Install

npm i express-request-logger

Weekly Downloads

71

Version

0.0.3

License

none

Last publish

Collaborators

  • mathrawka