Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
This module allows reduced/state updates to propagate to an outer hook, avoiding duplicated execution of inner hooks for libraries that have contained updates such as µland.
This module exports same utilities via uhooks-fx/async
, which is based on uhooks/async
for asynchronous hooks.
const test = ({hooked, dropEffect, useEffect, useState}) => {
const state = initial => {
const result = useState(initial);
useEffect(() => {
console.log('\x1b[2m', initial, 'fx in', '\x1b[0m');
return () => {
console.log('\x1b[2m', initial, 'fx out', '\x1b[0m');
};
}, []);
console.log('\x1b[2m', 'state value:', result[0], '\x1b[0m');
return result;
};
const first = hooked(state);
const second = hooked(state);
const parent = hooked(
() => {
const [a, $a] = first('a');
const [b, $b] = second('b');
// with uhooks inner updates don't propagate
// so this will be logged only once
// with uhooks-fx though, inner changes schedule
// an update for the outer hook, in this case
// the parent callback, so this will be logged
// twice, with updated values too
console.log('', a, b);
if (a === 'a')
$a('$a');
if (b === 'b')
$b('$b');
},
// there is an extra argument to flag a hook as parent
true
);
parent();
setTimeout(dropEffect, 0, first);
setTimeout(dropEffect, 0, second);
};
// verify the difference
setTimeout(test, 100, require('uhooks'));
setTimeout(test, 200, require('uhooks-fx'));
FAQs
uhooks with propagated states
The npm package uhooks-fx receives a total of 18 weekly downloads. As such, uhooks-fx popularity was classified as not popular.
We found that uhooks-fx 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.