Skip to content

Latest commit

 

History

History
74 lines (59 loc) · 1.8 KB

README.md

File metadata and controls

74 lines (59 loc) · 1.8 KB

Rill
@rill/logger
API stability Standard NPM version Downloads Gitter Chat

Isomorphic request logging for Rill. With colors!

<-- GET /
--> GET / 200 835ms 746b
<-- GET /
--> GET / 200 960ms 1.9kb
<-- GET /users
--> GET /users 200 357ms 922b
<-- GET /users?page=2
--> GET /users?page=2 200 466ms 4.66kb

Installation

npm install @rill/logger

Example

const app = require('rill')()
const logger = require('@rill/logger')

app.use(logger())

Options

{
  group: false // If true, will use console.group instead of log. (Shims in node)
}

Notes

Recommended that you .use() this middleware near the top to "wrap" all subsequent middleware.

Contributions

  • Use npm test to run tests.

Please feel free to create a PR!