Best of DOMJuly 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    How React 18 Improves Application Performance – Vercel

    How React 18 Improves Application Performance - Vercel Engineering Wednesday, July 19th 2023. Learn how concurrent features like Transitions, Suspense, and React Server Components improve application performance. We'll explore how these latest features impact and improve your application's performance.

  2. 2
    Article
    Avatar of hackernoonHacker Noon·3y

    Understanding the Differences Between Real DOM, Virtual DOM, and Shadow DOM

    The HTML tree of a website is represented by an object called. In this object, there is a model of the HTML tree's elements, conveniently accessible by. DOM (Document Object Model) document object dot notation. You can also use this dot notation to manipulate the DOM.

  3. 3
    Article
    Avatar of communityCommunity Picks·3y

    How to Change a Webpage UI with a Chrome Extension

    The OpenSauced.ai chrome extension is a versatile tool that helps both open source maintainers and contributors increase their productivity. The extension modifies the GitHub web page and adds helpful elements with features to facilitate code reviews, enable direct interaction with GitHub and provide additional functionalities like generating tests and explaining code.

  4. 4
    Article
    Avatar of asayerasayer·3y

    Implementing React Portals

    React Portals are the best way to handle pop-ups and render models in React. They allow the child component to be rendered out of the parent hierarchy and perform event propagation and delegation. In React, we have the Component hierarchy. It refers to the tree of components in a page and how a React page is structured.

  5. 5
    Article
    Avatar of colkgirlCode Like A Girl·3y

    What is Node.js? A Beginner’s Guide

    Node.js allows you to build applications that can handle multiple tasks concurrently without waiting for one task to finish before moving on to the next. It uses the V8 Engine, the same engine used by Chrome and written in C++. It is fast and non-blocking, primarily due to its asynchronous event-driven nature.