koa-logger
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/koa-logger package

4.0.0 • Public • Published

koa-logger

npm version

Development style logger middleware for koa. Compatible with request-received.

<-- 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 koa-logger

Example

const logger = require('koa-logger')
const Koa = require('koa')

const app = new Koa()
app.use(logger())

Notes

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

Use Custom Transporter

const logger = require('koa-logger')
const Koa = require('koa')

const app = new Koa()
app.use(logger((str, args) => {
  // redirect koa logger to other output pipe
  // default is process.stdout(by console.log function)
}))

or

app.use(logger({
  transporter: (str, args) => {
    // ...
  }
}))

Param str is output string with ANSI Color, and you can get pure text with other modules like strip-ansi
Param args is a array by [format, method, url, status, time, length]

License

MIT

Package Sidebar

Install

npm i koa-logger

Weekly Downloads

262,694

Version

4.0.0

License

MIT

Unpacked Size

9.09 kB

Total Files

6

Last publish

Collaborators

  • coderhaoxin
  • niftylettuce
  • dead_horse
  • tjholowaychuk
  • jongleberry
  • fengmk2
  • 3imed-jaberi
  • titanism