reactively icon indicating copy to clipboard operation
reactively copied to clipboard

Results 8 reactively issues
Sort by recently updated
recently updated
newest added

reactively seems like a really nice and concise library. do you intend this project being used by others? it would be great if you could add a LICENSE to the...

How to run a function whenever one or more dependency values change? For example, we have the following code ``` // declare some reactive variables. const counter = reactive(0); const...

This is an attempt at applying @lord's ideas in [How To Recalculate a Spreadsheet](https://lord.io/spreadsheets/) to the [Reactively algorithm](https://github.com/modderme123/reactively/blob/main/Reactive-algorithms.md). I wanted to better understand how signal libraries relate to incremental computation...

This is a question. Did you explore [well known symbols](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol#well-known_symbols) while ideating on Reactively? `Symbol.toPrimitive` is relevant to Reactively as a convinence so that you don't have to read with...

Ported your logic to a Go project that needs reactivity. All test pass and the results are very promising. I ported benchmark as well. Used it with no threading to...

Svelte provides [store contract ](https://svelte.dev/docs#component-format-script-4-prefix-stores-with-$-to-access-their-values-store-contract)mechanism for its reactivity. Would be great if `reactively` provide the subscribe API that conforms the store contract, just like `@preact/signals-core`.

Hey, first of all, really nice library and nice article. Really like the conciseness and the default of not running. Was not understanding why my console.log was not being called...