Skip to content

Instantly share code, notes, and snippets.

@uday-rayala
Created June 4, 2018 13:52
Show Gist options
  • Save uday-rayala/6aef644bf5b563a9196512a9600ccf5e to your computer and use it in GitHub Desktop.
Save uday-rayala/6aef644bf5b563a9196512a9600ccf5e to your computer and use it in GitHub Desktop.
const SentryMiddleware = (event, context, next) => {
initializeSentry()
return next(event, context)
.catch(error => captureExceptionAndReturnPromise(error, {}).then(() => Promise.reject(error)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment