You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+43
Original file line number
Diff line number
Diff line change
@@ -22,3 +22,46 @@ const store = createStore(reducer, applyMiddleware(
22
22
-`reduxCatch` receive a function to use when an error happen.
23
23
- The error handler function could be just a `console.error` like the example above or a function to log the error in some kind of error tracking platform.
24
24
- You should use this middleware as the first middleware in the chain, so its allowed to catch all the possible errors in the application.
25
+
26
+
### Using it with [Sentry](https://www.getsentry.com/)
27
+
To use it with Sentry just download the Sentry script from npm:
28
+
29
+
```bash
30
+
npm i -S raven-js raven-node
31
+
```
32
+
-[raven-js](https://www.npmjs.com/package/raven-js): This is the client for browser usage.
33
+
-[raven-node](https://github.com/getsentry/raven-node): This is the client for server usage.
0 commit comments