sahoo.hashnode.devWhy SSR instead of CSRWhat is SSR means? In technical industry SSR stands for SERVER-SIDE-RENDERING. This technically solves the load time fix of the page while a user sends any request from the browser. How this works ? Before stepping into how this works let’s understan...Feb 3·4 min read
sahoo.hashnode.devChoose <signals> or Classic ChangeDetectionFrom the above image, the classic change detection looks perfect, right? What we are not noticing is Performance Bundle size When Angular detects any changes, it potentially checks the entire application for UI updation and, which leads to a non-...Feb 2·4 min read
sahoo.hashnode.devShow Truncated tooltip in <@angular/>In UI development we come across such things like not to show tooltip/title when the text is completely showing. We can solve this problem by assigning classes to each text content and that would be so much hectic. In angular we use Directive for sol...Mar 17, 2024·2 min read
sahoo.hashnode.devAngular Pipes : Converting the OutputWhat is Angular Pipes: Pipes are the converters that are used to transform the output of our templates. We can use Angular pipes to transform our input to desired outputs for the user interface. Inbuilt Pipes: DatePipe: Formats a date value accordin...Oct 4, 2023·2 min read
sahoo.hashnode.devRouting guard in Angular Router.What is Routing? There are numerous UI pages for user interaction in an application. Let's use an online shopping app as an example. This app has a home page, a cart page, a wishlist page, and a sign-in/login page. Let's say we added the item to our ...Aug 3, 2023·4 min read