Sep 8, 2025 · 7 min read · Before React Fiber, React used a "Stack Reconciler." Think of it like a meticulous painter who has to finish a whole portrait from top to bottom without any breaks. If you, as the user, tried to interact with the page say, by typing in a text box, wh...
RRajat commented
May 21, 2025 · 4 min read · Introduction : React is famous for building fast, dynamic user interfaces. But under the hood, a lot has changed since its early days — and one of the biggest changes was the introduction of React Fiber. In this article, we’ll explore: What React us...
Join discussion
Apr 28, 2025 · 3 min read · Ever wondered what really happens when you write something like: <a href="https://google.com" target="_blank">Click me</a> How does React magically turn that into a real clickable link in your browser? In this blog, we’re not just going to talk abou...
Join discussionOct 14, 2024 · 6 min read · React has grown to be one of the most widely used libraries for developing user interfaces and for a reason. This is because it gives a way to construct fast, interactive apps, though all the magic actually happens behind the scenes with how it handl...
Join discussion
Sep 6, 2024 · 5 min read · Get ready for some theoretical concepts and bear with me, it will be an interesting session. Nowadays, Virtual Dom is not used that much in React but it does not mean we should not study about it because it is important from an interview perspective....
Join discussion
Aug 11, 2024 · 3 min read · Understanding React Fiber: The Heart of React's Efficiency When I first started diving into React, one of the concepts that really caught my attention was React Fiber. If you've been working with React, you might have heard about how Fiber is a groun...
Join discussion
Aug 10, 2024 · 3 min read · React is a powerful JavaScript library used for building dynamic user interfaces. It’s widely known for its efficiency and flexibility, which is made possible by several core concepts: the Virtual DOM, Reconciliation, and Fiber. In this article, we'l...
Join discussion
Aug 5, 2024 · 4 min read · 🌟 Introduction React has been a cornerstone of modern web development, empowering developers to build dynamic, responsive user interfaces. One of the most significant updates to React is the introduction of React Fiber, a complete rewrite of the Rea...
Join discussion
Jul 17, 2024 · 3 min read · In the provided example, we explore an important aspect of state updates in React, specifically related to how useState works and the effects of batching updates. Key Points: Initial State: const [counter, setCounter] = useState(15); This initiali...
Join discussion