
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
react-state-effects
Advanced tools
useStateEffects
hookAllows excecution of side effects immediately after state is set by setState
hook.
import useStateEffects from 'react-state-effects';
const Example = ({ callback, children }) => {
const [state, setState] = useStateEffects(1);
React.useEffect(() => {
setState(state$ => [state$ + 1, callback]);
}, [])
return children;
}
setState
could accept zero, one or multiple callbacks:
const cb1 = () => {...}
const cb2 = () => {...}
setState(state => [state + 1]);
setState(state => [state + 1, cb1]);
setState(state => [state + 1, cb1, cb2]);
In case current state is needed within callback, latest state could be injected by saving it within ref:
import useStateEffects from 'react-state-effects';
const Example = ({ callback, children }) => {
const [state, setState] = useStateEffects(1);
const stateRef = React.useRef(state);
React.useEffect(() => {
setState(state$ => [state$ + 1, () => callback(stateRef.current)]);
}, [])
React.useEffect(() => {
stateRef.current = state;
}, [state])
return children;
}
FAQs
React useState hook enhanced with side effects
The npm package react-state-effects receives a total of 68 weekly downloads. As such, react-state-effects popularity was classified as not popular.
We found that react-state-effects 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
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.