The way you can optimize your images with almost no efforts in Angular with NgOptimizedImage Directive
https://angularindepth.com/posts/1511/improve-page-performance-and-lcp-with-ngoptimizedimage
#angular #tips #images #LCP
https://angularindepth.com/posts/1511/improve-page-performance-and-lcp-with-ngoptimizedimage
#angular #tips #images #LCP
Angularindepth
Angular in Depth
Unlock the power of software engineering at its core with Angular in Depth!
Learning RxJS is always a challenge 😅
https://youtu.be/OhuRvfcw3Tw?si=BgEsECRdSkSegU1X
#rxjs #angular #tips
https://youtu.be/OhuRvfcw3Tw?si=BgEsECRdSkSegU1X
#rxjs #angular #tips
YouTube
TOP 6 Mistakes in RxJS code
To try everything Brilliant has to offer—free—for a full 30 days, visit https://brilliant.org/DecodedFrontend.
You’ll also get 20% off an annual premium subscription.
From this video, you will learn the TOP 6 mistakes developers make when writing RxJS code.…
You’ll also get 20% off an annual premium subscription.
From this video, you will learn the TOP 6 mistakes developers make when writing RxJS code.…
If you want to use Headless UI components in your projects instead of libraries like material you can use both
https://www.spartan.ng/documentation/installation
and
http://angularprimitives.com/
But make sure this will cover all your needs, because it is far from feature set regular libraries has, especially for big projects.
#angular #ui
https://www.spartan.ng/documentation/installation
and
http://angularprimitives.com/
But make sure this will cover all your needs, because it is far from feature set regular libraries has, especially for big projects.
#angular #ui
SPARTAN
spartan - Installation
Getting up and running with spartan
output & outputToObservable - new outputs API comes to handy
https://blog.angular.dev/meet-angulars-new-output-api-253a41ffa13c
#angular #v17
https://blog.angular.dev/meet-angulars-new-output-api-253a41ffa13c
#angular #v17
Medium
Meet Angular’s new output() API
Angular v17.3 introduces the improved API for declaring outputs as a developer preview.
Two-way binding with signals in developer preview:
https://angular.dev/guide/signals/model#two-way-binding-with-signals
#angular #signals
https://angular.dev/guide/signals/model#two-way-binding-with-signals
#angular #signals
angular.dev
The web development framework for building modern apps.
If you have multiple directives on your element you can order their execution if those are related to each other
https://angular.dev/guide/directives/directive-composition-api#directive-execution-order
#angular #advanced
https://angular.dev/guide/directives/directive-composition-api#directive-execution-order
#angular #advanced
angular.dev
The web development framework for building modern apps.
Best practises of using Angular SSR from v18
https://www.angulararchitects.io/blog/complete-guide-for-server-side-rendering-ssr-in-angular/
#advanced #universal #angular #ssr #pwa #v18
https://www.angulararchitects.io/blog/complete-guide-for-server-side-rendering-ssr-in-angular/
#advanced #universal #angular #ssr #pwa #v18
😱 You will not believe what are those myths!
https://youtu.be/JGQmn3c5UeE?si=Uf3U2vDMzCi5clPE
#angular #advanced
https://youtu.be/JGQmn3c5UeE?si=Uf3U2vDMzCi5clPE
#angular #advanced
YouTube
Myths About Angular in 2024
To try everything Brilliant has to offer—free—for a full 30 days, visit https://brilliant.org/DecodedFrontend.
You’ll also get 20% off an annual premium subscription.
👥 Decoded Frontend Community on Discord
https://bit.ly/decoded-frontend-discord
🌱🤝 Support…
You’ll also get 20% off an annual premium subscription.
👥 Decoded Frontend Community on Discord
https://bit.ly/decoded-frontend-discord
🌱🤝 Support…
Some latest updates regarding use of SSR in angular
#angular #ssr #universal #v18 #advanced
https://www.angulararchitects.io/blog/complete-guide-for-server-side-rendering-ssr-in-angular/
#angular #ssr #universal #v18 #advanced
https://www.angulararchitects.io/blog/complete-guide-for-server-side-rendering-ssr-in-angular/
ANGULARarchitects
Complete Guide for Server-Side Rendering (SSR) in Angular - ANGULARarchitects
Updated on Nov 9th, 2024 for Hybrid Rendering and Incremental Hydration in Angular v19. This comprehensive post includes a quick introduction to SSR, a detailed setup guide and several best practices with Angular v18 or even v19 (v19 to be released on Nov…
Working with Signals should be handled in proper way - Resource API will help us with that.
https://www.angulararchitects.io/blog/asynchronous-resources-with-angulars-new-resource-api/?mc_cid=ea8d6b1f68&mc_eid=10ac4cee81
#ng19 #angular #signals #advanced
https://www.angulararchitects.io/blog/asynchronous-resources-with-angulars-new-resource-api/?mc_cid=ea8d6b1f68&mc_eid=10ac4cee81
#ng19 #angular #signals #advanced
ANGULARarchitects
Asynchronous Data Flow with Angular's new Resource API - ANGULARarchitects
Dies ist Beitrag 6 von 6 der Serie “Signals” Signals in Angular: The Future of Change Detection Component Communication with Signals: Inputs, Two-Way Bindings, and Content/ View Queries Successful with Signals in Angular – 3 Effective Rules for Your Architecture…
Really a good example of performance boost options. Maybe some of them without examples, but it is good to challenge yourself and try it out.
https://davembush.medium.com/angular-performance-optimization-5ec630d2b8f1
#angular #performance #tips
https://davembush.medium.com/angular-performance-optimization-5ec630d2b8f1
#angular #performance #tips
Medium
Angular Performance Optimization
Originally published at Optimizing Angular For Speed | Dave’s Notebook (davembush.github.io)
As part of signal migration and finally to get rid of angular lifecycle hooks let's read how viewChild, viewChildren, contentChild and contentChildren can be used with effect and computed instead of ngAfterViewInit and ngAfterContentInit.
#angular #signals
https://blog.angular-university.io/angular-viewchild-contentchild/?utm_source=newsletter&utm_medium=email&utm_campaign=the_new_angular_template_query_system_you_need_to_know&utm_term=2025-03-21
#angular #signals
https://blog.angular-university.io/angular-viewchild-contentchild/?utm_source=newsletter&utm_medium=email&utm_campaign=the_new_angular_template_query_system_you_need_to_know&utm_term=2025-03-21
Angular University
Angular viewChild,viewChildren, contentChild (Full Guide)
A super-detailed guide to the new Angular signal queries: viewChild(), viewChildren, contentChild() and contentChildren().
Did you know that in angular version 19+ you can use
#name
instead of
private name
to make them true private?
I didn't know that properties with private field works only before compile time and it is open in production code for access.
Here is a good article about this https://riegler.fr/blog/2024-05-17-private-fields-downleveling
Make sure you are not using in earlier angular versions as it will result in weakMap creation.
#angular #ts #typescript #advanced #tips
#name
instead of
private name
to make them true private?
I didn't know that properties with private field works only before compile time and it is open in production code for access.
Here is a good article about this https://riegler.fr/blog/2024-05-17-private-fields-downleveling
Make sure you are not using in earlier angular versions as it will result in weakMap creation.
#angular #ts #typescript #advanced #tips
riegler.fr
Understand private properties downleveling in Angular
And more on browserslist and Esbuild integration into Angular
Lifecycle-Hook-Free Angular: Building Components with Modern APIs
https://www.youtube.com/live/5m0eqGxrLUo?t=23477s
Article: https://riegler.fr/blog/2024-12-31-lifecycle-hook-less
#angular #hooks #advanced
https://www.youtube.com/live/5m0eqGxrLUo?t=23477s
Article: https://riegler.fr/blog/2024-12-31-lifecycle-hook-less
#angular #hooks #advanced
YouTube
NgGlühwein 2024 | 14.12. Vienna
🎉 Get ready for a free Mini Conference to celebrate the end of 2024 with the Angular Vienna Community 🎉
What's on the agenda:
🗣️ International Top Speakers
🎓 Knowledge sharing
🎫 Raffles of cool prices
👥 Meet old and new friends from the community
🍻 Free…
What's on the agenda:
🗣️ International Top Speakers
🎓 Knowledge sharing
🎫 Raffles of cool prices
👥 Meet old and new friends from the community
🍻 Free…