# Reactivity and signals: demystifying frontend magic

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

- Date: 2025-06-25
- Event: [BreizhCamp](<https://breizhcamp.org/>)
- Location: Rennes, France
- Topics: computed-values, dependency-tracking, effects, frontend-reactivity, signals, vue

## Resources

- [Article](<https://talks.soubiran.dev/2025-06-25/breizhcamp/article>)
- [Slides](<https://talks.soubiran.dev/2025-06-25/breizhcamp>)
- [PDF](<https://talks.soubiran.dev/2025-06-25/breizhcamp/pdf>)
- [Source code](<https://talks.soubiran.dev/2025-06-25/breizhcamp/src>)

## Summary

Frontend reactivity can be described as a graph of dependencies that connects state, computed values, and effects. This talk uses the equation `ui = fn(state)`, an Excel analogy, and the `alien-signals` library to explain how changes propagate through that graph.

The presentation introduces directed acyclic graphs, topological sorting, and doubly linked lists before examining signal getters, subscribers, push and pull propagation, and effect execution. It ends by connecting these ideas to Vue's component scopes and reactive rendering.
