Skip to content

Instantly share code, notes, and snippets.

View manideepbollu's full-sized avatar

Manideep Bollu manideepbollu

  • Atlanta, Georgia
View GitHub Profile
'use strict';
var util = require('util'),
winston = require('winston'),
logger = new winston.Logger(),
production = (process.env.NODE_ENV || '').toLowerCase() === 'production';
module.exports = {
middleware: function(req, res, next){
console.info(req.method, req.url, res.statusCode);