Understanding the Core of React: Virtual DOM, React Fiber, and ReconciliationWhat is Virtual DOM Explained In web-dev, the DOM (Document Object Model) represents the structure of a document as a tree, where each object corresponds to a part of document. The Virtual DOM is a programming concept used to improve the efficiency o...Dec 31, 2023·3 min read·71
MiddleWaresExpress is a routing and middleware web framework that has minimal functionality of its own. An Express application is essentially a series of middleware function calls. https://gist.github.com/Rudra-IITM/b1ad46568cb8615ca9acd44d34c8d11d Middle-war...Dec 23, 2023·1 min read·15
NodeJS RuntimeECMAscript It is a scripting language spec which defines the core features and implementation of a scripting language. JS is a implementation of ECMAscript standard. NodeJS It is an open-source, cross-platform JavaScript runtime environment. It is bu...Dec 22, 2023·1 min read·34
JS Async and Sync FunctionsSynchronous Synchronous is a blocking architecture, so the execution of each operation depends on completing the one before it. Asynchronous Asynchronous is a non-blocking architecture, so the execution of one task isn't dependent on another. Tasks c...Dec 21, 2023·1 min read·17
Introduction to JavaScriptFeatures of JS JS is a interpreted language (it goes line by line while executing). Browsers can understand JS for frontend as well as backend also. Single Threaded Nature of JS JS is single threaded, it can use only single core at a time of you...Dec 21, 2023·1 min read·32