Angular Munich – Telegram
Angular Munich
180 subscribers
553 photos
41 videos
9 files
705 links
Stay up to date with Angular Framework ;-)

Need more: https://linktr.ee/ngxsamurai
Download Telegram
🔄 Important Angular Update: Deprecation of ngStyle and ngClass

#Angular is moving towards a more streamlined approach by deprecating the widely-used #ngStyle and #ngClass directives in favor of native style and class bindings.

🔍 Key Points:
- The native bindings provide similar functionality with reduced bundle size
- This change prioritizes performance and maintainability
- A migration guide will be provided

Check the PR:
https://github.com/angular/angular/pull/58860
Best practices for making accessible mobile and web apps.

https://teachaccess.github.io/tutorial
Reset #angular reactive form values to their default instead of null

When you create a reactive form in Angular, you can supply it with default values. But when you call the .reset() function, your values will be set to null values instead of the default values. This might not always be what you want to achieve, so how to reset to the default values 🤔
👍1
sry, just a Friday )
😁4
Ready for a new challenge? 🤑 💸💰💵💸💰💵💸💰💵
Forwarded from DevLoom
#angular's Resource API

Easily chain HTTP requests that depend on each other
🛠 Angular 19 improves how components with empty styles are handled. When a component’s styles or CSS files are empty, Angular sets encapsulation to None, preventing unnecessary attributes like “_ngcontent-ng-c885857805” from being added to HTML elements.

This update benefits projects using utility-first CSS frameworks like Tailwind CSS, where unused CSS files were sometimes not removed.

🎯 Key Benefits:
- Less runtime overhead work for scoping styles
- Lighter HTML documents in SSR response because of fewer attributes
- Applies to styleUrl, styleUrls and styles

⚠️ Note: This optimization is applied only in production builds.

#angular #angularlove #angulartips #frontend
🗺 Server Route Config

ℹ️ What is it?

Server Route Config allows dynamic route definitions to be loaded from a server at runtime. This is particularly useful for applications where routes depend on external factors like user roles, permissions, or configuration files.

⁉️ Why it matters:

🚀 Dynamic Routing
Routes can adapt to changing application needs without requiring hardcoding or a rebuild.

🤌 Simplified Configuration
Centralized server-side route definitions reduce redundancy and simplify management.

🪪 Improved Security
By controlling routes on the server, you minimize the risk of exposing unauthorized pages to the client.

💡 Use Cases:
Multi-tenant applications where routes vary by tenant.
Feature flags that enable or disable specific routes based on user roles.
The Missing Ingredient for Angular Template Code Coverage and Future-Proof Testing



https://marmicode.io/blog/angular-template-code-coverage-and-future-proof-testing
🔥2
Happy Weekend devs!!!
😁1
There is npm package "is-number"... yep... isNumber.. Nobody can do better as this dependency...

But what you say about this: https://www.youtube.com/shorts/oy0QD-40ppg
Wow... Finally new Stable Diffusion AI finished job correctly =)
neuralpony.png
1.2 MB
Stable Diffusion 3.5 (turbo): 1024x768 px
🔥1
first version ) same text
In #Angular v19, you can pass environment variables during build time using the CLI🏗

To achieve this, you can use the `--define` flag in your build command


#ng19 #cli