From Pull To Push? — It’s Time To Talk About Signals

This ad is not shown to multipass and full ticket holders
React Summit
React Summit 2026
June 11 - 15, 2026
Amsterdam & Online
The biggest React conference worldwide
Learn More
In partnership with Focus Reactive
Upcoming event
React Summit 2026
React Summit 2026
June 11 - 15, 2026. Amsterdam & Online
Learn more
Bookmark
Rate this content

With the active TC39 proposal in play, I think it’s about time we talk about Signals.

Over the years, the concept has had many different names. From “observables” in KnockoutJS, to “refs” in VueJS, before Solid made “signals” popular. We’ve seen the carcinization of frontend frameworks in the pursuit of more seamless and fine-grained reactivity in our applications.

But what actually are Signals? Why do we keep coming back to them? And where does React fit into all of this?

This talk has been presented at React Summit US 2025, check out the latest edition of this React Conference.

FAQ

Signals in JavaScript are reactive variables that automatically update derived values when the original variable changes, eliminating the need for manual recalculations.

React embraces the pull approach for consistency and predictability in rendering UI, focusing on performance optimization rather than adopting signals, which are more push-oriented.

Signals simplify state management by automatically updating dependent values when the underlying state changes, reducing complexity and potential for errors in UI updates.

The TC39 proposal aims to standardize signal implementations in JavaScript, offering framework-agnostic primitives for improved performance and consistency across different environments.

Pull approach involves re-rendering the entire UI or component on state changes for predictability, while push approach updates only specific parts of the UI, often relying on signals for efficiency.

Frameworks like Vue and Svelte use signals or similar concepts to manage reactive state and automatically update the UI when the state changes, avoiding manual DOM manipulations.

Signals address challenges like tedious manual updates of derived values, potential for inconsistent UI states, and complexity in state management, enhancing performance and reliability.

Standardizing signals allows for optimized runtime implementations in browsers and Node.js, reducing the need for individual frameworks to develop their own solutions and improving overall efficiency.

Frameworks like Solid, Angular, and Vue have adopted signals or similar reactive state management concepts to enhance their ability to efficiently update the UI.

React uses techniques like virtual DOM, component-based architecture, and memorization (useMemo, useCallback) to optimize performance while maintaining the pull approach for UI rendering.

Julian Burr
Julian Burr
23 min
21 Nov, 2025

Comments

Sign in or register to post your comment.
Video Summary and Transcription
Julian explores the importance of JavaScript signals, React's paradigm, and the evolution of paradigms in the JavaScript ecosystem. The evolution of state handling in JavaScript from pull to push approaches, the framework principles of state management and observables in JavaScript frameworks, React's signal handling, virtual DOM optimization, and the push approach. Simplified state management with signals and the challenges and solutions in implementing and optimizing signal handling in modern frameworks.

1. Exploring JavaScript Signals and React Paradigms

Short description:

Julian explores JavaScript signals' importance, React's approach, and the evolution of paradigms in the JavaScript ecosystem. Signals are reactive variables simplifying state management and UI updates. Transitioning from MVC to signals enhances reactivity and state predictability, revolutionizing front-end development.

Hi, everyone. I'm Julian, and yes, I do want to talk about signals. Now, JavaScript signals have had their fair share of attention and hype over the last few years. Especially in combination with the current TC39 proposal, I think it becomes more and more important for people to kind of be cross what signals are, how they work, and what problems they're trying to solve. But signals have also been part of, let's say, less positive conversations and discussions, especially in the React ecosystem around React and it not using signals. So I do want to touch on that. Why is React not using signals, what it's doing instead, but also why I think as a React developer, you should still follow the TC39 proposal, and I'm personally still hyped about it. Now, this is not going to be a talk about how signals are right, and if you're not using signals, you're wrong, or vice versa, like React is right, and if you are using signals, you're wrong. For me, this is not a right or wrong situation. So my talk really more aims towards trying to give everyone information about signals and how they work, so that you hopefully can go away and make more informed decisions for yourself and have more informed discussions. But also, and maybe more importantly, I do want to highlight the two different paradigms that have evolved in the JavaScript ecosystem and how we got there. So with all that out of the way, let's dive straight into it and let's talk about signals.

What are signals? Let's start there, just to get everyone on the same page. Signals are the idea of reactive variables in JavaScript, and what that means is we can take a look at a very simple example. We have three variables here, the counter, and then two derived values. So isEven is derived from counter and is true or false, and parity is derived from isEven and just turns it into string, even or odd. Now, whenever I reassign counter, which I can do because it's just a mutable variable, I have to remember to also reassign and recalculate all of those derived values, and that's obviously not great and that's tedious, and the idea of reactive variables is that I don't have to do that. So let's imagine a world, so this is not real JavaScript, this is a thought experiment and it has nothing to do with the signals proposal just yet, but let's imagine a world where we had a new assignment operator. So I chose the dollar equals instead of the normal equals, and that new assignment operator would tell the compiler that these are reactive variables. So we use a for isEven in parity here, counter can stay the same, and what we're telling the compiler is, hey, please, whenever any variables that we use in our calculation, whenever any of those change, please automatically recalculate this variable. That means if we change counter, we don't have to do anything else because the recalculation magically already happens through the compiler. Now, this is the core idea behind signals. Why would we want that?

Most of what we do as front-end developers is dealing with state and turning that state into UI. Now, when I started developing quite a while ago, the main paradigm around that was model view control or MVC, and the idea was that your view should always be a pure function of the model. In more modern terms, you can say your UI should always be the result of a pure function of your state. That sounds probably familiar, and the pure bit is really important here because basically what we want is if we put in the same state, we always want to get the same UI out of it. It just makes it very deterministic and easy to deal with. Now, how do we get from that to signals, which sounds more side-effecting? To understand that, we have to take a quick look at the history of reactivity on the web. Again, we have to start at the very beginning. We start with HTML and some kind of subset language.

2. Evolution of State Handling in JavaScript

Short description:

The evolution from a pull approach to an improved pull approach and then to a push approach in handling state changes and UI updates in JavaScript applications.

I'm choosing PHP here, but it could be any other language. It really doesn't matter. The concept is always the same. You have some form of state. In this case, we have a counter that we get from the URL, and then we have some form of templating that uses the state to render HTML. Then in the browser, whenever the state changes and whenever the URL changes, the browser goes back to the server, fetches a new UI for that new state, and returns that. This is basically the perfect example of what we just described of a pure function that based on the state just renders some HTML. It's what we call the pull approach. Every time the state changes, we're pulling the new UI from the server, and it has all the benefits that we just described as well. It's very predictable, meaning it's very easy to reason about by just looking at the code. It's very hard to get into broken states where we have to deal with inconsistent UIs. But it has a major drawback, and that's performance. It's obviously not very efficient to have to go to the server and fetch the whole HTML again every time any small state changes, especially in modern applications where we have a lot of state that's floating around.

So when JavaScript became a thing, especially when jQuery became a thing, and then we got AJAX, which allowed us to network requests even after the initial load is finished, we started playing with ideas to improve this pattern. The idea was basically, okay, we know the state changed, and we probably have a good idea of which parts of the UI relied on that state. So instead of fetching the whole HTML, let's just fetch subparts of that HTML, the parts that we know matters. So we're still going back to the server, but now we're much more selective, and we're only fetching smaller parts from the server, which means the server response is hopefully faster. So this is still a pull approach, but I would call it an improved pull approach because we're reducing the scope and helping with the performance problem. We're introducing the potential for inconsistencies now. If you don't remember that another part of the UI needs to update when the state changes, suddenly your UI could be inconsistent and out of sync.

For whatever reason, from that point, we went full on JavaScript. We went, what if we didn't go to the server at all, but instead just mutated the HTML on the fly in JavaScript on the client? While this might still look very similar because it's jQuery, the paradigm completely flipped. So now it's not a pull, it's more of a push approach. So whenever an action occurs, instead of fetching the new UI from the server, we're going straight to the DOM and pushing the new state into it. That obviously loses all the benefits of the pull approach. So now it's much less predictable, harder to reason about, and easier to get into inconsistent states. It's also pretty messy. So this is unfortunately why jQuery is still remembered as the spaghetti code error. To unspaghettify it, we introduced application frameworks. I'm choosing Knockout here because it's the first one that I've worked with.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Don't Solve Problems, Eliminate Them
React Advanced 2021React Advanced 2021
39 min
Don't Solve Problems, Eliminate Them
Top Content
Kent C. Dodds discusses the concept of problem elimination rather than just problem-solving. He introduces the idea of a problem tree and the importance of avoiding creating solutions prematurely. Kent uses examples like Tesla's electric engine and Remix framework to illustrate the benefits of problem elimination. He emphasizes the value of trade-offs and taking the easier path, as well as the need to constantly re-evaluate and change approaches to eliminate problems.
Jotai Atoms Are Just Functions
React Day Berlin 2022React Day Berlin 2022
22 min
Jotai Atoms Are Just Functions
Top Content
State management in React is a highly discussed topic with many libraries and solutions. Jotai is a new library based on atoms, which represent pieces of state. Atoms in Jotai are used to define state without holding values and can be used for global, semi-global, or local states. Jotai atoms are reusable definitions that are independent from React and can be used without React in an experimental library called Jotajsx.
Debugging JS
React Summit 2023React Summit 2023
24 min
Debugging JS
Top Content
Watch video: Debugging JS
Debugging JavaScript is a crucial skill that is often overlooked in the industry. It is important to understand the problem, reproduce the issue, and identify the root cause. Having a variety of debugging tools and techniques, such as console methods and graphical debuggers, is beneficial. Replay is a time-traveling debugger for JavaScript that allows users to record and inspect bugs. It works with Redux, plain React, and even minified code with the help of source maps.
The Epic Stack
React Summit US 2023React Summit US 2023
21 min
The Epic Stack
Top Content
Watch video: The Epic Stack
This Talk introduces the Epic Stack, a project starter and reference for modern web development. It emphasizes that the choice of tools is not as important as we think and that any tool can be fine. The Epic Stack aims to provide a limited set of services and common use cases, with a focus on adaptability and ease of swapping out tools. It incorporates technologies like Remix, React, Fly to I.O, Grafana, and Sentry. The Epic Web Dev offers free materials and workshops to gain a solid understanding of the Epic Stack.
A Look Ahead at Web Development in 2025
JSNation US 2024JSNation US 2024
32 min
A Look Ahead at Web Development in 2025
Top Content
Today, Wes Boss introduces the new features of the web, including customizable select and temporal, a standardized API for working with dates, time, and duration. The current date API in JavaScript has some problems related to time zones and date manipulation. With the temporal API, you can create dates without a time zone, specify dates without a year, and create durations without being attached to a specific date. The API also provides features for finding the difference between two dates. Invokers is a declarative click handlers API that eliminates the need for JavaScript. Speculation API enables pre-rendering and pre-loading of pages, improving performance. The CSS Anchor API allows positioning elements based on another element's location. Web components are encapsulated, framework-agnostic, and easy to use, offering a standardized approach for building reusable UI components. Building media UI components, like video players, is made easier with web components like Shoelace. Transformers JS allows running AI models in JavaScript for tasks like emotion detection and background removal. Python doesn't run in the browser, but JavaScript does. Small AI models can be loaded and executed faster in the browser using technologies like WebGPU. Animate height auto transition using calc size. Apply starting styles to elements for smooth animations. Use Vue transition for CSS and JavaScript animations. Syntax website with Vue transition for smooth page transitions. CSS relative colors allow for lighter or darker shades. Scope CSS ensures styles only apply to specified div containers. Web primitives facilitate modern JavaScript code. You can create web requests and receive web responses using the same primitives on both the client and server. There are many new web standards that work everywhere and frameworks like Hano and Nitro are built upon them. The select and Popover elements are accessible by default. Most of the discussed features will be available in all browsers by 2025. The future of web development with AI is uncertain, but web developers should embrace AI tools to improve efficiency. Implicit CSS lazy loading depends on whether it's prefetching or pre-rendering. Wes Boss discusses the specific features he is excited about in web development, including starting style, calc auto, and allowed discrete. He shares his preferred way of staying informed on new web development discoveries, emphasizing the importance of being part of the community and keeping up with industry discussions. Wes also mentions reading W3C meeting notes and recommends following the Twitter account Intent2Ship to stay updated on upcoming CSS features. Lastly, he discusses the potential impact of the new Scope CSS feature on developers' management of styles.
Fighting Technical Debt With Continuous Refactoring
React Day Berlin 2022React Day Berlin 2022
29 min
Fighting Technical Debt With Continuous Refactoring
Top Content
Watch video: Fighting Technical Debt With Continuous Refactoring
This Talk discusses the importance of refactoring in software development and engineering. It introduces a framework called the three pillars of refactoring: practices, inventory, and process. The Talk emphasizes the need for clear practices, understanding of technical debt, and a well-defined process for successful refactoring. It also highlights the importance of visibility, reward, and resilience in the refactoring process. The Talk concludes by discussing the role of ownership, management, and prioritization in managing technical debt and refactoring efforts.

Workshops on related topic

React, TypeScript, and TDD
React Advanced 2021React Advanced 2021
174 min
React, TypeScript, and TDD
Top Content
Featured Workshop
Paul Everitt
Paul Everitt
ReactJS is wildly popular and thus wildly supported. TypeScript is increasingly popular, and thus increasingly supported.

The two together? Not as much. Given that they both change quickly, it's hard to find accurate learning materials.

React+TypeScript, with JetBrains IDEs? That three-part combination is the topic of this series. We'll show a little about a lot. Meaning, the key steps to getting productive, in the IDE, for React projects using TypeScript. Along the way we'll show test-driven development and emphasize tips-and-tricks in the IDE.
Web3 Workshop - Building Your First Dapp
React Advanced 2021React Advanced 2021
145 min
Web3 Workshop - Building Your First Dapp
Top Content
Featured Workshop
Nader Dabit
Nader Dabit
In this workshop, you'll learn how to build your first full stack dapp on the Ethereum blockchain, reading and writing data to the network, and connecting a front end application to the contract you've deployed. By the end of the workshop, you'll understand how to set up a full stack development environment, run a local node, and interact with any smart contract using React, HardHat, and Ethers.js.
Remix Fundamentals
React Summit 2022React Summit 2022
136 min
Remix Fundamentals
Top Content
Workshop
Kent C. Dodds
Kent C. Dodds
Building modern web applications is riddled with complexity And that's only if you bother to deal with the problems
Tired of wiring up onSubmit to backend APIs and making sure your client-side cache stays up-to-date? Wouldn't it be cool to be able to use the global nature of CSS to your benefit, rather than find tools or conventions to avoid or work around it? And how would you like nested layouts with intelligent and performance optimized data management that just works™?
Remix solves some of these problems, and completely eliminates the rest. You don't even have to think about server cache management or global CSS namespace clashes. It's not that Remix has APIs to avoid these problems, they simply don't exist when you're using Remix. Oh, and you don't need that huge complex graphql client when you're using Remix. They've got you covered. Ready to build faster apps faster?
At the end of this workshop, you'll know how to:- Create Remix Routes- Style Remix applications- Load data in Remix loaders- Mutate data with forms and actions
Vue3: Modern Frontend App Development
Vue.js London Live 2021Vue.js London Live 2021
169 min
Vue3: Modern Frontend App Development
Top Content
Workshop
Mikhail Kuznetsov
Mikhail Kuznetsov
The Vue3 has been released in mid-2020. Besides many improvements and optimizations, the main feature of Vue3 brings is the Composition API – a new way to write and reuse reactive code. Let's learn more about how to use Composition API efficiently.

Besides core Vue3 features we'll explain examples of how to use popular libraries with Vue3.

Table of contents:
- Introduction to Vue3
- Composition API
- Core libraries
- Vue3 ecosystem

Prerequisites:
IDE of choice (Inellij or VSC) installed
Nodejs + NPM
Developing Dynamic Blogs with SvelteKit & Storyblok: A Hands-on Workshop
JSNation 2023JSNation 2023
174 min
Developing Dynamic Blogs with SvelteKit & Storyblok: A Hands-on Workshop
Top Content
WorkshopFree
Alba Silvente Fuentes
Roberto Butti
2 authors
This SvelteKit workshop explores the integration of 3rd party services, such as Storyblok, in a SvelteKit project. Participants will learn how to create a SvelteKit project, leverage Svelte components, and connect to external APIs. The workshop covers important concepts including SSR, CSR, static site generation, and deploying the application using adapters. By the end of the workshop, attendees will have a solid understanding of building SvelteKit applications with API integrations and be prepared for deployment.
0 to Auth in an hour with ReactJS
React Summit 2023React Summit 2023
56 min
0 to Auth in an hour with ReactJS
WorkshopFree
Kevin Gao
Kevin Gao
Passwordless authentication may seem complex, but it is simple to add it to any app using the right tool. There are multiple alternatives that are much better than passwords to identify and authenticate your users - including SSO, SAML, OAuth, Magic Links, One-Time Passwords, and Authenticator Apps.
While addressing security aspects and avoiding common pitfalls, we will enhance a full-stack JS application (Node.js backend + React frontend) to authenticate users with OAuth (social login) and One Time Passwords (email), including:- User authentication - Managing user interactions, returning session / refresh JWTs- Session management and validation - Storing the session securely for subsequent client requests, validating / refreshing sessions- Basic Authorization - extracting and validating claims from the session token JWT and handling authorization in backend flows
At the end of the workshop, we will also touch other approaches of authentication implementation with Descope - using frontend or backend SDKs.