Best of DOMJune 2023

  1. 1
    Article
    Avatar of amplicationAmplication·3y

    Using Parallel Processing in Node.js and Limitations

    Node.js uses a synchronous event loop that takes in code from the call stack and executes it. The event loop delegates all I/O-related operations to a set of threads that perform these operations in parallel. This means that while the event loop executes a CPU-intensive process, applications are blocked from further execution.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    The Complete Guide to Becoming a Web Developer: Part 3

    The Document Object Model, or DOM, is a programming interface for HTML and XML documents. When you load a web page, the browser fetches the HTML and parses it, creating the DOM. This DOM is stored in the browser’s memory, not as a string, but as a set of interconnected objects.

  3. 3
    Article
    Avatar of svelteSvelte Blog·3y

    svelte.dev: A complete overhaul

    svelte.dev: A complete overhaul of the old website. The new site comes with accessibility fixes, new features and bottom navbar. The website now has a dark mode toggle, which is also synced with your OS's dark mode settings. It was reimplemented to upgrade to CodeMirror 6.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    Teleportation in React: Positioning, Stacking Context, and Portals

    React: Positioning, Stacking Context, and Portals are all available in React. We need Portals to escape the "clipping" of content when rendering elements inside elements with. The real thing is not yet available, so let's just teleport components in the DOM for now.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Learn JavaScript for DOM Manipulation in Spanish – Course for Beginners

    Learn JavaScript for DOM Manipulation in Spanish - Course for Beginners Hi! You will learn the fundamentals in Spanish and build projects step by step. If you have Spanish-speaking friends, you are welcome to share the Spanish version of this article with them.

  6. 6
    Article
    Avatar of codemotionCodemotion·3y

    A Complete Introduction to the React Library

    React is a JavaScript library designed to facilitate the creation of interactive and scalable user interfaces. It was developed by Facebook and is used by many large companies, such as Instagram and Airbnb, to build complex and high-performance web applications. React promotes code reusability, simplifying the management and maintenance of complex UIs.