Redux middleware for reporting actions to third party APIs. This package is extremely useful for analytics and error handling. Can be used with various APIs such as New Relic, Sentry, Adobe DTM, Keen
Installation
npm install --save redux-reporter
Usage
General Reporting
Create your reporting middleware
// /middleware/myReporter.js
import reporter from 'redux-reporter';
export default reporter(({ type, payload }, getState) => {
try {
// report to external API
} catch (err) {}
});
Attach meta data to your actions
// /actions/MyActions.js
export function myAction() {
let type = 'MY_ACTION';
return {
type,
meta: {
report: { // default attribute that is selected by redux-reporter
type,
payload: 'example payload'
}
}
};
}