PINKAM SAINIpinkam.hashnode.dev·Nov 16, 2024CHANGE DETECTION (a short overview)Rendering When you're using a web site, what you see on the screen (like buttons, images, and text) is created based on the app's internal data (like objects and arrays). This process of turning data into visual elements is called rendering. In any a...DiscussChangeDetection
Jamie Burtonjburtondev2.hashnode.dev·Jun 18, 2024UI Change Detection and Rendering AlgorithmsA deep dive into UI change detection algorithms and how they work Disclaimer: this is an on-going article and needs some refining Software Engineering for user interfaces has never been more complex. Due to the explosion of the Web, UI's are now ...DiscussChangeDetection
Ashay Sawarkarcodecraftsman.hashnode.dev·May 28, 2024Boosting Angular Performance: Essential Optimization TechniquesIntroduction: Angular is a powerful front-end framework for building modern web applications, but as applications grow in size and complexity, ensuring optimal performance becomes increasingly crucial. In this article, we'll explore some essential op...Discuss·106 readsOptimizationStrategies
Akanksha Saxenaexceptionhandled.hashnode.dev·May 26, 2024Mastering Angular Change Detection: Understanding OnPush StrategyIn the vibrant world of Angular development, mastering change detection is key to creating efficient and high-performance applications. One of the important aspects of this is understanding the ChangeDetectionStrategy.OnPush. Let's delve into this to...DiscussAngular
Shweta Roydevroy.hashnode.dev·Mar 16, 2024Exploring Change Detection in AngularOn an afternoon while coding on an Angular application, I ran into the unfortunate situation of using a function call on *ngIf. The code worked of course and I was beaming until I opened the console and saw it getting bombarded with logs(I had placed...Discuss·54 readsAngular
Dipesh Shivramedssitachi.hashnode.dev·Jan 7, 2024A Primer on Angular Change DetectionMaintaining a consistent and synchronized relationship between the application view and the data model is essential. This blog post will explore the inner workings of Change Detection in Angular, shedding light on its operational mechanisms, the vari...Discuss·27 readsAngular
Mo' Claudiuskodedmo.hashnode.dev·May 22, 2023Angular Change Detection Strategy: A GuideAngular is a powerful framework known for its robustness and ability to facilitate the development of large-scale applications. A key feature of Angular is its Change Detection Strategy, a mechanism that allows Angular to track changes in components ...Discuss·194 readsAngular