Best of DOMAugust 2022

  1. 1
    Article
    Avatar of changelogChangelog·4y

    aidenybai/million: Virtual DOM into the future!

    Million makes creating user interfaces as easy as React, but with faster performance and smaller bundle size for the end user. Million is being used at companies like Wyze and open source work like Quartz, TinyPages, and more. We expect all Million contributors to abide by the terms of our Code of Conduct.

  2. 2
    Article
    Avatar of hashnodeHashnode·4y

    How to Debug Better with Chrome

    Google Chrome is probably the most widely used and popular web browser among developers. It has gradually become the preferred web browser for most developers to test and debug their websites and web apps. Google Chrome provides developers with the ability to debug most web applications with the built-in developer tools (aka DevTools) within the browser.

  3. 3
    Article
    Avatar of towardsdevTowards Dev·4y

    Getting started with React Query

    i will set up the new React project for our play-ground — You can skip this step if you already have existing project. i will also add the React-router-dom because we will need it later on. I’m using create-react-app with Typescript to make things easier.

  4. 4
    Article
    Avatar of sectionioSection·4y

    How to Create a Reusable React Form component

    React forms are data gotten from the front-end (the browser) and are handled by the components within the React code. In React, we use JSX which stands for Javascript XML. This allows us to write HTML in React. We need to change the pre-defined React code written by default during installation. We then define a function that will hold the dispatch that will trigger a change in state.

  5. 5
    Article
    Avatar of communityCommunity Picks·4y

    Authentication and Protected Routes in React Router v6.

    Protected Routes are basically the routes that are protected from the unauthorized access. We can access the protected routes only when certain conditions are fulfilled. Let’s have a step by step look on how to implement protected routes in react router.

  6. 6
    Article
    Avatar of communityCommunity Picks·4y

    Types of Directives in Angular

    Directives in Angular are the class which allow us to add additional behavior and modify existing behaviour to our elements. Directives can be used in a variety of ways to change styles and hide or show content. We can see the class name when we inspect the DOM element.