A blend of @preact/signals-core and solid-js basic reactivity API
Installations
npm install usignal
Developer Guide
Typescript
Yes
Module System
ESM
Node Version
19.7.0
NPM Version
8.19.2
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (92.04%)
HTML (5.59%)
TypeScript (2.37%)
Developer
WebReflection
Download Statistics
Total Downloads
50,239
Last Day
13
Last Week
109
Last Month
665
Last Year
32,314
GitHub Statistics
231 Stars
226 Commits
15 Forks
11 Watching
8 Branches
6 Contributors
Bundle Size
2.19 kB
Minified
955.00 B
Minified + Gzipped
Package Meta Information
Latest Version
0.9.0
Package Id
usignal@0.9.0
Unpacked Size
45.57 kB
Size
11.46 kB
File Count
32
NPM Version
8.19.2
Node Version
19.7.0
Publised On
24 Feb 2023
Total Downloads
Cumulative downloads
Total Downloads
50,239
Last day
-23.5%
13
Compared to previous day
Last week
-39.1%
109
Compared to previous week
Last month
61.4%
665
Compared to previous month
Last year
199.1%
32,314
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
µsignal
Social Media Photo by Carlos Alberto Gómez Iñiguez on Unsplash
A blend of @preact/signals-core and solid-js basic reactivity API, with API and DX mostly identical to @preact/signals-core but extra goodness inspired by solid-js, 803 bytes minified with brotli.
1import {signal, computed, effect, batch, Signal} from 'usignal'; 2// const {signal, computed, effect, batch, Signal} = require('usignal'); 3 4signal(0) instanceof Signal; // true 5computed(() => {}) instanceof Signal; // true 6 7effect( 8 () => { console.log('fx') }, 9 void 0, // optional value to pass along the callback as initial/prev value 10 {async: true} // optionally make the effect async: false by default 11); 12 13// try every example shown in 14// https://github.com/preactjs/signals 15// or see test/index.js file to see it in action
Exports
This is a dual module so it works in either CommonJS or ECMAScript module systems.
usignal/sync
exports with an enforced sync effectusignal/async
exports with an enforced async effectusignal
in browsers exportsusignal/async
andusignal/sync
in servers or by defaultusignal/core
just exports the effect as callback that accepts an effect and an optionally asynchronoustrue
flag, used by all other exports by default, but you decide if a specific effect should sync or async.- the unpkg/usignal default export points at the pre minified es.js file without any enforcement around effect, like
usignal/core
, so that all effects are sync by default but can be async passingtrue
as second parameter
Current exports are exactly these:
1import { 2 signal, 3 computed, 4 effect, 5 batch, 6 Signal 7} from 'usignal';
The Signal
export is useful only as brand check for either computed or signal references, but it cannot be used as constructor right away.
Exports - Extra
To allow developers to try and use different patterns there are a few variants of this module, still based on the very same core primitives:
usignal/fn
, with its*/sync
and*/async
variants, where signals are callbacks so thatsignal()
returns a its value, andsignal(value)
updates its value and return the new one, inspired by S. Computeds do not update anything socomputed()
returns values. This is a variant around the.value
accessor pattern I don't necessarily disike, specially when we'd like to signal that a signal is being observed:effect(() => { mySignal(); })
usignal/solid
, with its*/sync
and*/async
variants, where the module exports createEffect, createMemo, and createSignal, mimicking the behavior (and returned values) as solid-js basic reactivity API. This is handy to compare the two or drop-in usignal in solid-js already based code.
Differently thought ...
-
the default comparison for equality is not based on
===
but on Object.is. This might be a tiny, hopefully irrelevant, performance penalty, but I feel like guarding NaN cases in reactivity is a step forward to avoid infinite loops out of NaN poisoning some computation. +0 and -0 are less interesting cases to tackle, still these might be fundamental in some case, hence preserved in this moudle. -
this library has lazy, non side-effecting, computed values, something @preact/signals-core recently introduced and Solid 2.0 is planning to improve.
-
computed accepts an initial value otherwise passed as previous one by default, mimicking solid-js
useMemo(fn[, value[, options]])
signature. -
effect passes along its initial value or the previoulsy returned one. If this is a function though, it runs it before re-executing, passing along its returned value, if any.
-
both
signal(value[, options])
andcomputed(fn[, value[, options]])
accept an optionally options argument, currently implementing equals as explained in silid-js documentation. -
both signal and computed also implement a thenable interface that can be used to
await signal
orawait computed
without needing to useawait signal.value
orawait computed.value
out of this poll. -
both signal and computed also have a
toJSON
and avalueOf()
allowing to implicitly use their values, e.g.
1const one = signal(1); 2const two = signal(2); 3const three = computed(() => one + two); 4 5three.value; // 3 indeed!
Benchmark
The benchmark currently compares S, solid, preact/signals, and cellx against usignal.
Please note preact is currently not able to solve nested effects so its logic might be simpler than other libraries.
1npm run benchmark
Tests
This module is 100% code covered, including the WeakRef possible leaks which is tested through the test/leak.js file, which is part of the build script process.
To use other libraries as reference, I have also added preact/signals-core and solid-js dev-dependencies within the test folder.
Please note preact is currently not able to solve nested effects so its logic might be simpler than other libraries.
The following instructions are needed to test other libraries too:
1cd usignal 2npm i 3cd test 4npm i 5cd .. 6 7# normal tests 8npm test usignal # shows also code-coverage 9npm test solid 10npm test preact 11 12# leak test 13npm run leak usignal # calculate leaks via internals 14npm run leak solid 15npm run leak preact
About the leak test
This file is not meant at all as meaningful benchmark against other libraries, it's simply there to allow me to spot regressions on future updates of the library:
there should be zero leaks on signals when a computed reference is garbage collectedv0.5.0 removed the WeakRef, computeds go when signals go ... but why?!- the amount of used memory should always be lower than the initial one
- the performance should be competitive compared to others
How to integrate with Lit
You create a following mixin function. Your class inherits from Mixin. Please see the demo for details.
1import { effect } from 'usignal'; 2 3export function WithUsignal(Base){ 4 return class WithUsignal extends Base { 5 #disposeEffect 6 7 disconnectedCallback() { 8 this.#disposeEffect?.(); 9 } 10 11 performUpdate() { 12 if (!this.isUpdatePending) { 13 return; 14 } 15 16 if (this.#disposeEffect) { 17 super.performUpdate(); 18 return 19 } 20 21 this.#disposeEffect = effect(() => { 22 this.isUpdatePending = true; 23 super.performUpdate(); 24 }); 25 } 26 }; 27}
![Empty State](/_next/static/media/empty.e5fae2e5.png)
No vulnerabilities found.
![Empty State](/_next/static/media/empty.e5fae2e5.png)
No security vulnerabilities found.
Gathering detailed insights and metrics for usignal