SPSweta Praharajinswetapraharaj.hashnode.dev·Mar 19, 2025 · 7 min readSSR vs CSR - what is ideal for your scenario?SSR (Server-Side Rendering) vs CSR (Client-Side Rendering) in Angular Rendering is the process of converting code into a visible UI in the browser. In Angular, there are two main rendering strategies: FeatureServer-Side Rendering (SSR)Client-Side...00
SPSweta Praharajinswetapraharaj.hashnode.dev·Mar 19, 2025 · 2 min readHow is an Angular App loaded by browser?Step 1: Browser Loads index.html The browser requests index.html, which contains a script tag that loads the Angular bundle. <script src="main.js"></script> <!-- Compiled Angular app --> Step 2: main.ts Bootstraps the Application Angular e...00
SPSweta Praharajinswetapraharaj.hashnode.dev·Mar 19, 2025 · 3 min readHostListener and HostBinding AngularHostListener and HostBinding in Angular In Angular, @HostListener and @HostBinding are decorators that help interact with the host element (the element on which the directive or component is applied). 1. @HostListener - Listening to Events on the Ho...00
SPSweta Praharajinhow-does-angular-app-loads-in-a-browser.hashnode.dev·Mar 17, 2025 · 2 min readHow does Browser load an Angular appStep 1: Browser Loads index.html The browser requests index.html, which contains a script tag that loads the Angular bundle. Example: <script src="main.js"></script> <!-- Compiled Angular app --> Step 2: main.ts Bootstraps the Application A...00