express-driftwood

1.2.0 • Public • Published

express-driftwood

A tiny piece of express middleware for logging requests using QubitProducts/driftwood.

Installation

npm i driftwood express-driftwood

Usage

Just call express-driftwood with an instance of driftwood and mount it in your express app before everything else:

const createLogger = require('driftwood')
const expressLogger = require('./index')
const express = require('express')

createLogger.enable({ '*': 'trace' })

const log = createLogger('my-app')
const app = express()

app.use(expressLogger(log))
app.get('/', (req, res) => res.send('Wooo!'))
app.get('/400', (req, res) => res.status(400).send('You dun goofed'))
app.get('/500', (req, res) => res.status(500).send('We dun goofed'))

app.listen(1119, () => {
  log.info('my-app started!')
})

Options

Options can be passed as a second argument.

options.ignore

A string, regex, function or array of the former, to match URLs that you don't want to log:

{
  ignore: ['/status', /^\/status/, (url) => url.indexOf('/status') > -1]
}

options.rewrite

A function that rewrites urls, e.g. to remove sensitive data:

{
  rewrite: (url) => url.replace('secret', '*****')
}

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i express-driftwood

    Weekly Downloads

    112

    Version

    1.2.0

    License

    MIT

    Unpacked Size

    3.47 kB

    Total Files

    3

    Last publish

    Collaborators

    • oliverwoodings
    • qubit