Last active
June 25, 2016 04:30
-
-
Save andrewtamura/331982a57775eb90012c071979a89952 to your computer and use it in GitHub Desktop.
raven wrapper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Raven = require('raven'); | |
// Configure the Raven client from the Sentry DSN. For local development, keep this environment variable unset to prevent | |
// Raven from sending events to sentry | |
var ravenClient = new Raven.Client(); | |
// Return the configured Raven client | |
module.exports = ravenClient; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment