Best of AngularJune 2022

  1. 1
    Article
    Avatar of gcgitconnected·4y

    Are Web Components Dead?

    Web Components are reusable client-side components based on official web standards. They are an excellent way of encapsulating functionality from the rest of our code. Despite the promising advantages, Web Components struggle to find industrywide adoption. Many developers say they have already died. Who's right? What is the current state of Web Components?

  2. 2
    Article
    Avatar of medium_jsMedium·4y

    Improving Angular initial load time

    If you are working on a large codebase, chances are that you have a lot of modules, and your main bundle might be very big. Lazy loading most(or all) of your routes is the easiest way in angular to fix this. Split vendor chunk is not really recommended in production by the angular team in the official docs.

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

    External Configurations in Angular

    external configuration allows multiple custom configuration for the same source code. The downside is manual maintenance is needed. We will investigate a couple of ways to load external configuration, the pitfalls, and possible solutions. Let's begin by creating the config json file with some keys. The full project is on StackBlitz. Let’s add the http call to get the configuration file.