Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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
The npm package redux-performance-plus receives a total of 3 weekly downloads. As such, redux-performance-plus popularity was classified as not popular.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.