Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
batched-hook
Advanced tools
Batched set state and dispatch for react hooks
Sometimes state updates caused by multiple calls to useState setter, are not batched. more detail
Example:
function useCount(init = 0) {
const [count, setCounter] = useState(init);
function inc() {
setCounter(c => c + 1);
}
return [count, inc];
}
export function App() {
const [a, incA] = useCount(0);
const [b, incB] = useCount(0);
const renderCount = useRef(0);
renderCount.current = renderCount.current + 1;
console.log(`render${renderCount.current}`, a, b);
useEffect(() => {
console.log('effect ', a, b);
}, [a, b]);
const incAll = () => {
setTimeout(() => {
incA();
incB();
}, 0);
};
return (
<div className="App">
render count:
<div data-testid="count">{renderCount.current}</div>
state:
<div data-testid="state">
{a}-{b}
</div>
<button data-testid="button" onClick={incAll}>
increment all
</button>
</div>
);
}
output:
render1 0 0
effect 0 0
// click
render2 1 0 <-- bad render
effect 1 0 <-- bad effect
render3 1 1
effect 1 1
with batched-hook
you can batch calls to dispatch
of useReducer
and setter of useState
hooks.
render1 0 0
effect 0 0
// click
render2 1 1
effect 1 1
yarn add batched-hook
import React from 'react';
import ReactDOM from 'react-dom';
import { install } from 'batched-hook';
// `uninstall` function will restore default React behavior.
const uninstall = install(React, ReactDOM);
install
function patches React and replace useState
and useReducer
with new functions. These functions have the
same functionality but when you call dispatch
, the called function and its arguments will be saved into a queue. after
all sync statements, all function calls inside the queue we will be called inside ReactDOM.unstable_batchedUpdates
.
FAQs
Batched set state and dispatch for react hooks
We found that batched-hook 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.