Best of DOMMarch 2022

  1. 1
    Article
    Avatar of indepthinDepth.dev·4y

    101 Javascript Critical Rendering Path

    Every webpage has a Document Object Model or a DOM. This is an object-based representation of the entire HTML page, which is in the parsed state. Once the HTML is parsed, a DOM tree is built. The DOM Tree contains objects. The CSS Object Model takes care of the styles present in association with the DOM tree.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    React.js Basics – The DOM, Components, and Declarative Views Explained

    React is an open source JavaScript library for creating user interfaces. It was created by Facebook back in 2013. Some of the popular websites built using ReactJS include Dropbox, Netflix, and Instacart – and the list goes on. Let's dive into the two main features of ReactJS that we're gonna discuss today.

  3. 3
    Article
    Avatar of hnHacker News·4y

    Solid.js feels like what I always wanted React to be

    React Hooks are neat, but error-prone. I’ve thought a lot about hooks and why they don’t feel quite right. I found the answer, by exploring Solidjs. The problem with React hooks is that they’re not truly reactive. If a linter knows when an effect is found, then it can automatically detect changes.