Bundling in AngularBundling is the need of the hour as even today bloated web apps are being shipped to the production servers which really slows down the performance of the web apps & overall results in bad user experience. Bundling -> Collection of JS packages & othe...Jul 10, 2024·4 min read
Content Projection in AngularContent projection - It is a pattern in which we may require to send/insert / project data dynamically to our angular components. Is done using Ng-Content. For Reusable / Scalable components A slot can be thought of as a container or div. Multisl...May 26, 2023·2 min read
Change Detection | ImmutabilityChange Detection => Process run by angular to check whether the app's state has been changed. Happens from top to bottom. It runs periodically so that changes in the logic/components/data models are getting reflected in the view. {also happens on dat...May 19, 2023·6 min read