Simran Gangwanisimrancodes.hashnode.dev·Nov 14, 2024Breaking Out of the Root: A Deep Dive into React PortalsReact is all about organizing components in a structured hierarchy, giving us the flexibility to create multiple components independently while rendering them within a single DOM node, typically called the “root”. But what if a component needs to ste...Discuss·23 likesReact
shohanur rahmanshohan777.hashnode.dev·Oct 9, 2024Why JSX? How JSX works behind the hood?Did you know it is not mandatory to write react code using JSX only? That you can use React.JS using CDN? But that is only the react library. While using the CDN you have to import two packages: react and react-dom. React is the core library that pro...Discuss·11 likesReact
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
Prateekprateek333hashnode.hashnode.dev·Aug 10, 2024Why React Hooks Matter: A Hands-On Guide with useState (Video 5th of react.js series)Understanding Hooks in React: My Journey with useState As I continued my journey into React.js, I reached a crucial point in the learning curve—understanding the need for hooks and where they come into play. In this post, I'll walk you through my exp...Discuss·11 likesReact
Prateekprateek333hashnode.hashnode.dev·Aug 8, 2024Deep dive into the basics of react.js(vedio 4th of react.js series)Creating a Custom React Element Without React.js: A Deep Dive into the Basics Learned from: [react.js by Hitesh Choudhary youtube] As I delved into React.js, I wanted to understand the core of how React elements work by creating a custom React-like...Discuss·11 likesReact Dom
Naveen Kumareasycodedev.hashnode.dev·Feb 29, 2024What is Virtual Dom in React?Normally, whenever a user requests a webpage, the browser receives an HTML document for that page from the server. The browser then constructs a logical, tree-like structure from the HTML to show the user the requested page in the client. How re-ren...DiscussWeb Development
Rajasree Pothularajasree.hashnode.dev·Jul 17, 2023React DOM/Virtual DOMThere are hundreds of articles floating which deal with the comparison of DOM and React-DOM.But what is React-DOM or what is DOM for that matter.Let’s unwind this. Advantages of React React, often stylized as React-dom, has taken the world of web dev...DiscussReact
Chaitanya Joshiexplainlikeiamfive.hashnode.dev·Apr 27, 2023Re-renderingReacting and re-rendering are as connected as a rocket is to gravity. Without understanding gravity, rocket science is... well, you get the point. The same is true with React and its first principle, re-rendering. Why we don't use let or const https:...Discuss·24 likes·351 readsReact
Nkiruka Edith Onwugbuforedleychris.hashnode.dev·Feb 12, 2023Understanding the Fundamentals of React: A Beginner's Guide.React is not a framework. React is the subject of numerous discussions. Is it a framework or a library? A framework is a complete solution. Everything you need to create your application is already included. A framework usually wants you to code ever...Discuss·17 likes·70 readsReactHooks
Vaibhav Tyagivaibhavtyagi.hashnode.dev·Jan 18, 2023What is Virtual DOM in React?The virtual DOM is a fundamental React concept. If you've written React code in the past few years, then you've probably heard of it. However, you may not understand how it works and why React uses it. In this blog post, we will dive deep into the to...Discuss·88 readsReact