Best of AngularApril 2025

  1. 1
    Article
    Avatar of tilThis is Learning·1y

    Angular 2025 Guide: Mastering Standalone Components

    Discover the evolution of Angular with the introduction of standalone components. Learn how these components simplify the development process by reducing the need for NgModules, streamlining declarations, and enhancing modularity. This guide offers step-by-step instructions and practical examples to help both beginners and returning developers transition to modern Angular practices.

  2. 2
    Article
    Avatar of infoworldInfoWorld·1y

    Catching up with Angular 19

    Angular 19 introduces several optimizations and improvements for reactive programming, focusing on enhancing developer experience and boosting performance. Key updates include incremental hydration, event replay, granular control over server routes, removal of Zone.js in favor of RxJS, standalone components becoming the default, signals for inputs and outputs, and enhanced environment variable declarations in CLI commands. These advancements reflect Angular's dynamic evolution and increased positive sentiment among developers.

  3. 3
    Article
    Avatar of telerikTelerik·1y

    Step Up Performance in Angular: Pure Pipes vs. Memoization

    The guide explores the use of optimization tools like pure pipes and memoization in Angular to avoid excessive re-renders and expensive computations in components. A step-by-step process is provided to build an unoptimized version of an Angular app and then enhance it using these techniques. Pure pipes only call their transform function when variables change, improving performance by skipping unnecessary computations. Memoization is introduced to further optimize pipes by caching results of expensive function calls and returning cached results for repeated inputs.

  4. 4
    Video
    Avatar of joshuamoronyJoshua Morony·1y

    Angular without selectors is (probably) coming

    Angular may soon eliminate the need for double imports when using components by allowing direct reference to the TypeScript class in the template. This proposed change aims to simplify developer experience but needs to support all current Angular features, potentially sparking debates within the community. An example in the PR demonstrates how attributes, inputs, and directives might function with the new system, though it's still in early stages and subject to community feedback.

  5. 5
    Article
    Avatar of syncfusionSyncfusion·1y

    Introducing the New Angular SpeechToText Component

    Explore the new Angular SpeechToText component by Syncfusion, which utilizes the Web Speech API to convert spoken words into text in real time. This component supports multiple languages, customizable UI elements, and advanced speech recognition features, making it ideal for voice-command apps, language-learning tools, and transcription services. Detailed setup instructions are provided to help users integrate this feature-rich component into their Angular projects.

  6. 6
    Video
    Avatar of youtubeYouTube·1y

    Master Frontend Technologies in Just 50 Days

    Explore 50 essential frontend technologies and their real-life use cases, aiming to elevate your frontend skills over a 50-day journey. Join for tutorials and practical insights that go beyond basic HTML, CSS, and JavaScript.

  7. 7
    Article
    Avatar of tiaThis is Angular·1y

    The Angular Standalone Component Gotcha I Didn’t See Coming

    Returning to Angular development after years, the author encountered an unexpected issue with standalone components. The post describes the journey of building a simple standalone navbar component and the silent failure due to not importing the CommonModule, which is crucial for core directives like *ngFor and *ngIf. The experience serves as a reminder to always remember the framework's evolution and to pay attention to the details.