Skip to content

Instantly share code, notes, and snippets.

@niklas-r
Forked from vcarl/userTimingMiddleware.js
Created July 3, 2018 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niklas-r/fdcaee0b4a8af792205082128c6f5ff2 to your computer and use it in GitHub Desktop.
Save niklas-r/fdcaee0b4a8af792205082128c6f5ff2 to your computer and use it in GitHub Desktop.
A User Timing middleware for redux to create performance markers for dispatched actions
const userTiming = () => (next) => (action) => {
if (performance.mark === undefined) return next(action);
performance.mark(`${action.type}_start`);
const result = next(action);
performance.mark(`${action.type}_end`);
performance.measure(
`${action.type}`,
`${action.type}_start`,
`${action.type}_end`,
);
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment