Best of AngularSeptember 2022

  1. 1
    Article
    Avatar of btrprogBetter Programming·4y

    Write Better React Code Without Conditional Rendering Operators

    ReactJS official documentation explains how to do conditional rendering in React. But in large projects or components, the code is not very readable and maintainable. The problem in React can make the code hard to read and maintain. If your component is small enough, you can do something like this.

  2. 2
    Article
    Avatar of pointerPointer·4y

    BuilderIO/qwik: The HTML-first framework. Instant apps of any size with ~ 1kb JS

    Qwik allows fully interactive sites to load with almost no JavaScript and pickup from where the server left off. As users interact with the site, only the necessary parts of the site load on-demand. This precision lazy-loading is what makes Qwik so quick.

  3. 3
    Article
    Avatar of itnextITNEXT·4y

    Write better React code without conditional rendering operators

    ReactJS official documentation explains how to do conditional rendering in React. But in large projects or components, the code is not very readable and maintainable. The problem in React can make the code hard to read and maintain. In this tutorial, we will use the If, Then, Else components from the library.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Angular for Beginners Course + TypeScript [Full Front-End Tutorial]

    Angular is a popular TypeScript-based open-source web application framework created by Google. We just published a comprehensive 18-hour Angular course for beginners on the freeCodeCamp.org YouTube channel (18-hour watch) In this course you will first learn the basics of TypeScript.

  5. 5
    Article
    Avatar of towardsdevTowards Dev·4y

    The Secret Of Controlling Component Instances In React

    The key prop is used by React to identify which items have changed, are added, or are removed. Unmounting the previous instance simply means that all state that had existed in the component is completely removed. This is another little known secret about React key prop.

  6. 6
    Article
    Avatar of medium_jsMedium·4y

    How To Create Auto-Saving Forms in Angular

    How to Create Auto-Saving Forms in Angular is a brief guide to creating reactive and template-driven forms with RxJs and Angular Material. In this article, we will study how to create auto-saving forms in Angular. We will implement this feature with all its whistles and bells, such as toggling it on and off. Unfortunately, we’re not done yet. The last change — the one with the last remaining character — is not canceled.