
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
redux-performance-plus
Advanced tools
A Redux performance measurement middleware, with additional tooling
This is a utility and convenience library for measuring Redux action timings. It uses performance-plus to access the browser-based performance API, with support for IE8+.
You can pass a custom action duration limit, where actions exceeding that timing limit (in ms) are passed to an onSlow callback with relevant data.
import { applyMiddleware } from 'redux';
import performance from 'redux-peformance-plus';
const middlewares = applyMiddleware(
performance({
limit: 83, // 83ms is ~ 5 animation frames
onSlow: (action) => {
console.warn(`${action.type} took ${action.duration().toFixed(2)ms}`, {
mean: action.mean(),
sampleSize: action.samples().length,
'95th_perc': action.percentile(0.95)
})
}
})
);
export default middlewares;
$ npm install redux-performance-plus --save
The middleware constructor takes one argument with options.
// Default configuration, no behavior
applyMiddleware(performance());
// Default configuration, log all actions
applyMiddleware(performance({
onSlow: (action) => {
console.log(`${action.type} took ${action.duration().toFixed(2)ms}`);
}
}));
// Custom configuration, log all actions taking over 100ms
applyMiddleware(performance({
limit: 100,
onSlow: (action) => {
console.log(`${action.type} took ${action.duration().toFixed(2)ms}`);
}
}));
The action data passed to onSlow contains the original action (with type, etc.), along with these methods:
action.type // unchanged
action.duration(); // latest duration for action type, in ms
action.mean(); // mean duration, in ms
action.sdev(); // standard deviation of mean duration, in ms
action.samples(); // all measures for this action type
action.percentile(0.5); // Percentile duration for recorded samples of this aciton type
FAQs
A Redux performance measurement middleware, with additional tooling
We found that redux-performance-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.