Coder Social home page Coder Social logo

bunyan-request's Introduction

bunyan-request

Build Status Dependency Status devDependency Status

npm install bunyan-request --save

Request, response logger middleware for bunyan:

  • log request as req
  • log response as res
  • log request<>response duration in milliseconds as duration
  • creates, use and forward to response the x-request-id request header: get it if present, create it otherwise (uuid.v4())
  • log request id as id
  • provides req.log as an id-specialized logger for you to track your request in your entire application, every time you access the request object
  • compatible with pure http server, express, connect and any http middleware system
  • uses standard bunyan serializers

Here are the fields it creates, beautified with | bunyan cli.

screenshot

Install

npm install bunyan-request --save

Usage

var bunyan = require('bunyan');
var bunyanRequest = require('bunyan-request');
var express = require('express');

var app = express();
var logger = bunyan.createLogger({name: 'My App'});
var requestLogger = bunyanRequest({
  logger: logger,
  headerName: 'x-request-id'
});

app.use(requestLogger);
app.get('/', function(req, res) {
  // now use `req.log` as your request-specialized bunyan logger
  req.log.info('YO DAWG!');
  res.send('ok');
});

x-request-id

Will use and forward x-request-id (case insensitive) header when present.

Otherwise it will generate a uuid.v4() and add it to the response headers.

Example

npm run example

See example.

Test

npm test

Credits

First version by tellnes/bunyan-middleware.

License

MIT

bunyan-request's People

Contributors

koltesdigital avatar tellnes avatar vvo avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.