Virtual DOM Diffing Algorithm

Virtual DOM Diffing Algorithm in React The Virtual DOM Diffing Algorithm is the process React uses to determine what has changed in the UI and update only the necessary parts of the real DOM instead […]

Share Button

React Rendering

Introduction to React Rendering Rendering is the process where React executes a component and creates (or updates) its Virtual DOM representation. React then compares it with the previous version and updates only the necessary parts […]

Share Button

Server Components vs Client Components

What are Server Components in React? React Server Components (RSC) are components that execute only on the server. Instead of sending their JavaScript code to the browser, the server renders them into a special React […]

Share Button

React Fiber Architecture

React Fiber is the core rendering engine introduced in React 16. It replaced the older “Stack Reconciler” to make rendering interruptible, incremental, and more responsive. So first we have to what is “Stack Reconciler” What […]

Share Button

Create .net project from command line in windows

Open CMD in the folder Type the following – 1. mkdir MySolution 2. cd MySolution 3. dotnet new sln –name MySolution 4. dotnet new webapi –output src/MyProject 5. dotnet sln add src/MyProject/MyProject.csproj 6. dotnet run […]

Share Button