11 Matching Annotations
  1. Last 7 days
    1. const count = signal(0); const doubled = computed(() => count.value * 2);

      I like this syntax better than Solid's. It returns a single object (with .value) rather than explicit getter/setter.

      I wonder if there's a way to use similar syntax in Solid? Don't see any reason why we couldn't easily wrap createSignal with a nicer API.

    1. The convergence of major frameworks on signals-based reactivity is not fashion—it is a recognition that the virtual DOM model, while powerful, has a fundamental inefficiency: it describes what to render rather than what changed. Signals describe exactly what changed and update exactly what depends on it.
  2. Aug 2026