# node-connect-raven **Repository Path**: mirrors_defunctzombie/node-connect-raven ## Basic Information - **Project Name**: node-connect-raven - **Description**: connect error handling middleware to log via raven - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # connect-raven connect/[express](http://expressjs.com/) error middleware logging through [raven](https://github.com/mattrobenolt/raven-node) ## use ```javascript 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 * http://expressjs.com/guide.html#error-handling