micro-logger
v0.1.3
Published
A minimalist, light-weight logger middleware that outputs request information to standard output.
Downloads
6
Readme
micro-logger
A minimalist, light-weight logger middle-ware that outputs request information to standard output.
Usage
To use micro-logger in your application:
cdto your project's rootRun
npm install micro-loggerto download the module.In an
Expressapplication, you can include the micro-logger using the following setup:var express = require('express'); var app = express(); var microLogger = require('micro-logger'); app.use(microLogger);`
