Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork22
Express.js Example
Add Exceptionless to your Express.js project and start collecting unhandled errors and 404s quickly.
To start, just add the following middleware to the bottom of your middleware definitions.
// This middleware processes any unhandled errors that may occur in your middleware.app.use(function(err,req,res,next){client.createUnhandledException(err,'express').addRequestInfo(req).submit();res.status(500).send('Something broke!');});// This middleware processes 404’s.app.use(function(req,res,next){client.createNotFound(req.originalUrl).addRequestInfo(req).submit();res.status(404).send('Sorry cant find that!');});
We have built a quickExpress.js sample app you can play around with.
Run the sample app by following the steps below:
- InstallNode.js
- Clone or download our repository from GitHub.
- Run
npm install. This steps is required because we reference the exceptionless package from the root dist folder. - Navigate to the
example\expressfolder via the command line (e.g., cd example\express) - Run
npm install - Open app.js in your favorite text editor and set theapiKey.
- Run node app.js.
- Navigate tohttp://localhost:3000 in your browser to view the express app.
- To create an error, navigate tohttp://localhost:3000/boom
We recommend enabling debug logging by callingclient.config.useDebugLogger();. This will output messages to the console regarding what the client is doing. Please contact us by creating an issue on GitHub if you need assistance or have any feedback for the project.
Looking forGeneral Exceptionless Documentation,UI Documentation, orDocumentation for another Client?
Visit the Primary Exceptionless Documentation Page and go from there.