sp-winston-express

A simple winston log formatter and error handler for express

Usage no npm install needed!

<script type="module">
  import spWinstonExpress from 'https://cdn.skypack.dev/sp-winston-express';
</script>

README

sp-winston-express

Deprecated

Usage

var log = require('sp-winston-express');
// To use with morgan as log stream:
app.use(morgan('combined', {stream: log.stream}));

// At end of chain to do exception handling add
app.use(log.errorLogger);

// Otherwise use like winston with things like:
log.info('Hi');
log.error('Bad things!');

Changes

0.1.2

  • Corrected formatter raising an exception

0.1.1

  • Added missing dependencies