Zainab JINARIbenizcode.hashnode.dev·Oct 21, 2024How React Works Under The HoodIntroduction: In this tutorial, we will explore how the React framework works. To achieve this, we'll start by understanding the traditional way of doing things. We'll use an example to see how it is rendered and discuss the performance limitations o...Discuss·10 likes·26 readsReact
akanksha srivastavadeeplinking.hashnode.dev·Oct 13, 2024Virtual DOM ( Document Object Model)The virtual DOM is a concept in web development, particularly in libraries and framework like React, that optimizes the way changes to the UI are handled. How the virtual DOM works :- Real DOM : The regular DOM ( Document Object Model ) is a tree st...Discuss·1 likeReact
Animesh Shrivatrishrivatri.hashnode.dev·Sep 6, 2024React Key PropI am Frontend developer since 2022, mojorly use React as my frontend tool, but never go deep to understand what React key prop actually help. But I got answer…. Since react uses Virtual Dom (V-DOM) in fiber architecture also in previous stack ones, i...DiscussReact
Umar Khursheedumarkhursheed.hashnode.dev·Sep 6, 2024Virtual DOM, Fiber and ReconciliationGet 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....DiscussReact
Prateekprateek333hashnode.hashnode.dev·Aug 11, 2024Mastering React Fiber: The Backbone of Efficient UI Rendering(V6 of react.js series)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...Discuss·11 likesReact
Abhinav Singhblog.imabhinav.dev·Apr 30, 2024Unraveling the Enchantment of React's Reconciliation: A Comprehensive ExplorationGreetings, dear readers! Today, we embark on an immersive journey into the fascinating realm of React's reconciliation. Just as a wizard crafts spells to weave harmony in their magical world, React's reconciliation weaves a seamless tapestry of updat...DiscussReact
Shivam Kumarlearning-react.hashnode.dev·Apr 26, 2024Virtual DOM, Fiber, and ReconciliationIntroduction In the world of front-end development, React has emerged as a dominant force, revolutionizing the way developers build user interfaces. At the heart of React's performance and efficiency lie concepts like Virtual DOM, Fiber, and Reconcil...Discuss·10 likesvirtual dom
Smit Desaismitd.hashnode.dev·Apr 12, 2024React Exploring the WorldMicro-services v/s Monolith Monolith: A huge big project which itself has API code, UI code, Auth Code, DB code, etc. Everything inside a single project. Building & compiling this project itself is huge task here. All developers work on same project/...Discuss·54 readsReact
Smit Desaismitd.hashnode.dev·Apr 7, 2024React Hooks, Reconciliation & Diffing AlgorithmEverything React can do can be done using Normal JS HTML also. So why React.\=> It makes your Developer Experience easy, Less code and do more. What else? We'll learn about it in this blog. React gives you super powers so that you can make these Larg...Discuss·308 readsReact
Akash Thoriyaakashthoriya.hashnode.dev·Jan 31, 2024Reconciliation Algorithm in ReactExpert-Level Explanation The reconciliation algorithm in React is the process through which React updates the DOM. When a component’s state changes, React needs to determine whether an actual DOM update is necessary. The algorithm compares the render...DiscussReactJS Fundamentals for InterviewsReact