Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
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 0 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 found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.