React Conf 2021 Highlights the Evolution of React 18 and the Strategic Move Toward Concurrent Rendering

The sixth iteration of React Conf, held in December 2021, marked a significant milestone for the global developer community as Meta’s React team unveiled a comprehensive vision for the future of the library. Historically, React Conf has served as the definitive platform for industry-altering announcements, including the 2015 introduction of React Native and the 2018 debut of React Hooks. This year’s event, however, shifted the focus toward architectural refinement and a multi-platform strategy, headlined by the release of the React 18 Release Candidate (RC) and the introduction of concurrent features.
A Global Digital Transformation
For the first time in its history, React Conf was hosted entirely online, a transition that allowed for unprecedented global participation. The event was streamed free of charge and provided real-time translations in eight different languages, reflecting a commitment to international accessibility. The logistics of the conference were substantial, with over 50,000 registered attendees and more than 60,000 views across 19 specialized talks. To foster a sense of community typically found at in-person events, the organizers utilized a dedicated Discord server, which hosted over 5,000 active participants. The conference also featured a "replay event" designed specifically to accommodate developers in various time zones, ensuring that the content was accessible regardless of geographic location.
React 18 and the Philosophy of Concurrent Features
The centerpiece of the keynote address, delivered by Andrew Clark, Juan Tejada, Lauren Tan, and Rick Hanlon, was the formal introduction of React 18. Unlike previous versions that occasionally required significant refactoring, React 18 was presented as a major release designed for gradual adoption. The defining characteristic of this version is the inclusion of the long-awaited concurrent renderer.
A critical takeaway from the keynote was the clarification of React’s approach to concurrency. The team emphasized that there is no "Concurrent Mode" in React 18; instead, there are "Concurrent Features." This distinction is vital for application developers. In earlier experimental versions, concurrency was envisioned as an all-or-nothing mode that could potentially break existing patterns. By shifting to a feature-based model, the React team allows developers to opt-in to concurrent rendering only where it provides the most value, such as in heavy UI transitions or complex data-fetching scenarios. This strategy ensures that apps can upgrade to React 18 with a level of effort comparable to a standard minor release while still gaining access to powerful new performance optimizations.
Technical Implementation and the createRoot API
To facilitate the transition to React 18, the team announced that the Release Candidate was immediately available for public testing. The upgrade path involves a fundamental change in how React attaches to the Document Object Model (DOM). Developers are now encouraged to move away from the legacy ReactDOM.render API in favor of the new createRoot API.
The createRoot API is the gateway to the concurrent renderer. Without this change, applications continue to run in "legacy mode," which mimics the behavior of React 17. Once the transition to createRoot is made, the application gains the ability to use new hooks and features such as startTransition, which allows developers to mark certain updates as non-urgent. This ensures that the main thread remains responsive to user input, such as typing or clicking, even while a large re-render is occurring in the background.
Advancements in Server-Side Rendering and Suspense
React 18 also introduces transformative changes to Server-Side Rendering (SSR) through the expansion of Suspense. Traditionally, SSR required a "waterfall" approach: the server had to fetch all data for a page, render the entire HTML, and send it to the client, which then had to load the JavaScript and "hydrate" the entire page before it became interactive. This often led to a "dead zone" where the page was visible but unresponsive.
Shaundai Person’s presentation highlighted how React 18 breaks this bottleneck using Streaming SSR. By leveraging Suspense, developers can wrap slow-loading components, allowing the server to stream the rest of the page’s HTML immediately. As the data for the suspended components becomes available, the server sends the remaining HTML and the necessary JavaScript to hydrate just those specific sections. This "Selective Hydration" means that users can see and interact with parts of the page much faster, significantly improving perceived performance and User Experience (UX) metrics.
The React Working Group and Ecosystem Governance
A notable shift in the development of React 18 was the creation of the first React Working Group. This group comprises a panel of experts, library maintainers, educators, and developers from across the tech industry. The goal of this initiative was to move React’s development toward a more collaborative and transparent model.
The Working Group played a pivotal role in refining the gradual adoption strategy and testing new APIs before their general release. This collaboration led to the development of specialized hooks intended for library maintainers, such as useId for generating unique IDs on both server and client, useSyncExternalStore for subscribing to external data sources, and useInsertionEffect for CSS-in-JS libraries. By involving the community early, the React team ensured that the ecosystem—including popular libraries like Redux, Next.js, and various UI kits—would be ready for the stable release of React 18.
Developer Tooling and the Timeline Profiler
To support the complexities introduced by concurrent rendering, the newly formed React DevTools team, led by Brian Vaughn, introduced several enhancements to developer tooling. The most significant of these is the Timeline Profiler.
Debugging concurrent apps requires a deeper understanding of when tasks are scheduled and executed. The Timeline Profiler provides a visual representation of the work React is doing over time, allowing developers to identify bottlenecks, see when transitions are starting and ending, and understand how React is prioritizing different updates. This level of visibility is essential for optimizing high-performance applications and ensures that the power of the concurrent renderer is accessible to developers of all skill levels.
Future Research: React Without Memo
Perhaps the most forward-looking segment of the conference was Xuan Huang’s presentation on "React Forget," an auto-memoizing compiler currently in the research phase at React Labs. One of the recurring pain points in React development is the manual management of performance through React.memo, useMemo, and useCallback. Failure to implement these correctly can lead to unnecessary re-renders, while over-implementing them can clutter the codebase.
The "React Forget" compiler aims to solve this by automatically identifying which parts of a component tree need to be memoized during the compilation step. This would effectively provide the performance benefits of memoization without requiring explicit developer intervention. While the project was presented as a prototype, it signaled a long-term commitment to simplifying the developer experience and making React "fast by default."
Redesigning Documentation and Educational Outreach
Rachel Nabors introduced a major investment in React’s educational resources, specifically the overhaul of the official documentation. The new site, now known as react.dev, represents a shift in pedagogy. While previous documentation focused heavily on Class Components and a reference-style explanation of APIs, the new documentation is built from the ground up using Functional Components and Hooks.
The new docs feature interactive code sandboxes and "challenges" that allow developers to practice concepts in real-time. This focus on "learning by doing" is designed to lower the barrier to entry for new developers while providing experienced engineers with a clearer understanding of modern best practices. The emphasis on high-quality, accessible documentation is a cornerstone of the team’s strategy to maintain React’s position as the leading UI library in a competitive market.
Broader Impact and Industry Implications
The announcements at React Conf 2021 suggest a broader evolution for the library. By moving toward a multi-platform vision, React is positioning itself as a universal language for UI development, spanning the web, mobile (via React Native), desktop, and even emerging platforms like Virtual Reality.
The focus on concurrency and streaming SSR addresses the growing demand for highly performant, "app-like" experiences on the web. As web applications become more complex, the ability to manage background tasks and stream content becomes a competitive necessity. Furthermore, the introduction of the Working Group and the emphasis on community collaboration indicate that Meta is increasingly viewing React as a community-driven project rather than a purely internal tool.
The implications for the industry are profound. Large-scale enterprise applications stand to benefit most from the gradual adoption of React 18, as it allows them to modernize their stacks without the risk of a "big bang" migration. Meanwhile, the advancements in tooling and documentation ensure that the next generation of developers will have the resources needed to build the next wave of digital experiences.
As the conference concluded, the React team expressed gratitude to the hundreds of contributors, moderators, and speakers who made the event possible. With the React 18 stable release slated for early 2022, the 2021 conference served as both a technical roadmap and a testament to the enduring vitality of the React ecosystem. The transition to concurrent rendering is not merely a version update; it is a foundational shift that will define the next decade of web development.







