# Reactivity and signals: demystifying frontend magic

> Unpack frontend reactivity: change propagation, dependency tracking, signals, computed values, and effects in modern frameworks.

- Date: 2025-10-21
- Event: [StrasbourgJS](<https://strasbourgjs.org/>)
- Location: Strasbourg, France
- Topics: computed-values, dependency-tracking, effects, frontend-reactivity, signals, vue

## Resources

- [Slides](<https://talks.soubiran.dev/2025-10-21/strasbourgjs>)
- [PDF](<https://talks.soubiran.dev/2025-10-21/strasbourgjs/pdf>)
- [Source code](<https://talks.soubiran.dev/2025-10-21/strasbourgjs/src>)

## Summary

How does a frontend know which code to run after state changes? This talk answers the question with `ui = fn(state)`, an Excel example, and a small reactive system built with `alien-signals`.

It introduces dependency graphs and doubly linked lists, then explores subscribers, computed values, effects, propagation strategies, and several unresolved problems such as glitches, cycles, mutable state, and changing dependency graphs. The last examples show how these mechanisms map to Vue.
