Use the createReactiveSystem
API to build a simple signal library.
import { signal, computed, effect } from 'alien-signals-starter'; const count = signal(1); const doubleCount = computed(() => count.get() * 2); effect(() => { console.log(`Count is: ${count.get()}`); }); // Console: Count is: 1 console.log(doubleCount.get()); // 2 count.set(2); // Console: Count is: 2 console.log(doubleCount.get()); // 4
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4