
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@webreflection/alien-signals
Advanced tools
alien-signals with a Preact signals like API and a class based approach for easy brand check.
import {
Signal,
signal, computed,
effect, untracked,
// all other alien-signals exports
} from '@webreflection/alien-signals';
const count = signal(0);
const double = computed(() => count * 2);
// implicit count.valueOf()
console.assert(count instanceof Signal); // true
console.assert(double instanceof Signal); // true
effect(() => {
console.log('count', count.peek());
// no subscription
console.log('double', double.value);
});
count.value++;
A signal created via signal(value, { greedy: true }) will effect any time the same value is set again, as opposite of ignoring the explicit set operation.
Follow this discussion if interest in upstream feedbacks: https://github.com/stackblitz/alien-signals/issues/83
FAQs
alien-signals with a Preact signals like API
The npm package @webreflection/alien-signals receives a total of 10,845 weekly downloads. As such, @webreflection/alien-signals popularity was classified as popular.
We found that @webreflection/alien-signals demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.