/node-connect-raven

connect error handling middleware to log via raven

Primary LanguageJavaScriptBSD 2-Clause "Simplified" LicenseBSD-2-Clause

connect-raven

connect/express error middleware logging through raven

use

var connect_raven = require('connect-raven');

var app = express();

// other middleware here

// the router should come before the error handling
app.use(app.router);

// make sure to use this middleware after the router
app.use(connect_raven( {{ SENTRY DSN }} ));

// routes ...
// app.get
// app.post

references