
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@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, computed,
effect, untracked, batch,
// 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 15,964 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.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.