UNPKG

@workablehr/riviere

Version:

log inbound/outbound HTTP traffic

12 lines (8 loc) 197 B
const Koa = require('koa'); const riviere = require('../index'); const app = new Koa(); app.use(riviere()); app.use(function() { throw new Error('something went wrong'); }); app.listen(3000);