
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@preact-signals/unified-signals
Advanced tools
Signals package that can used in any environment, via import remapping
@preact-signals/unified-signals@preact-signals/unified-signals is runtime agnostic @preact/signals reexport. That can be used for library developers that want to rely on user preact signals runtime. If you want to write library that uses preact signals you can take benefit from @preact-signals/unified-signals. It uses shims instead of hooks if runtime is not providing it, also we polyfilling untracked API.
You can install @preact-signals/unified-signals using your package manager of choice:
# npm
npm i @preact-signals/unified-signals
# yarn
yarn i @preact-signals/unified-signals
# pnpm
pnpm i @preact-signals/unified-signals
If you are using @preact-signals/unified-signals in your library to preserve runtime agnosticism you can use should add this lines
into your package.json:
{
"peerDependencies": {
"@preact/signals-react": ">=1.2.0",
"@preact/signals": ">=1.1.0",
"@preact/signals-core": ">=1.1.0"
},
"peerDependenciesMeta": {
"@preact/signals-react": {
"optional": true
},
"@preact/signals": {
"optional": true
},
"@preact/signals-core": {
"optional": true
}
}
}
Basic @preact/signals API and untracked
untrackedconst a = signal(1);
const b = signal(2);
const c = computed(() => a.value + untracked(() => b.value));
console.log(c.value); // 3
a.value = 2;
console.log(c.value); // 4
b.value = 3;
console.log(c.value); // 4
@preact-signals/unified-signals is licensed under the MIT License.
FAQs
Signals package that can used in any environment, via import remapping
The npm package @preact-signals/unified-signals receives a total of 342 weekly downloads. As such, @preact-signals/unified-signals popularity was classified as not popular.
We found that @preact-signals/unified-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.
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 researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.