The Tech PlatformJun 163 minDetecting Idle Users in Your Angular AppOccasionally the applications we work on need to react in a particular way if the user is inactive for a certain amount of time. For...
The Tech PlatformJun 83 minThe QueryListThe QueryList is the return type of ViewChildren and contentChildren . QueryList stores the items returned by the viewChildren or...
The Tech PlatformJun 12 minWhen to Use Angular ControlValueAccessor and What’s the Difference Without It?ControlValueAccessor provides the ability to use FormControl with any component that implements this interface. This gives a lot of...
The Tech PlatformMay 243 minHow to Learn new Programming Language fasterThere are some steps you want to take to accelerate the learning process and increase your fluency in the programming language you are...
The Tech PlatformMay 247 minHow to start a project on Angular?Create the project This one is straightforward. We need to create our app (where else would we be working, huh) ng new app . Install...
The Tech PlatformMay 184 minAdvanced Angular Structural Directive to Render Long ListsThis article shows you how to create an advanced structural directive similar to Angular’s own ngFor and use that to render a long list...
The Tech PlatformMay 112 minContent Projection : How to project content using ng-content tag?Content projection is a pattern in which you insert, or project, the content you want to use inside another component. For example, you...
The Tech PlatformApr 304 minKeycloak in Angular ApplicationThese are the requirements to perform the integration of Keycloak in an application in angular. 1. Install Node.js Node.js is an...
The Tech PlatformApr 283 minCreating Useful Documentation for Your Angular Component Library Using StorybookComponent libraries in UI development are essential for any large-scale enterprise application to ensure consistency in both presentation...
The Tech PlatformApr 223 minSmart & Dumb Components in AngularComponents may appear to be easy to grasp! Yet there is much more to learn about them. The Components structure divides the page into...
The Tech PlatformApr 206 minAngular State Management with NgRxThis guide aims on understanding why you may need local or global state management as well as get you started with NgRx which is a...
The Tech PlatformApr 185 min34 UI Libraries For React, Vue And AngularReact: React is a free and open-source front-end JavaScript library for building user interfaces based on UI components. It is maintained...
The Tech PlatformApr 133 minGenerate QR Codes with Angular 10In this tutorial, we’ll learn how to generate QR codes in Angular by building a simple example application using the latest Angular 10...
The Tech PlatformApr 53 minIntroduction to NGXS, state management pattern + library for AngularNgxs is a state management pattern for the Angular framework. It acts as a single source of truth for our application. Ngxs is very...
The Tech PlatformMar 163 minSorting Tables in Angular with RxJSFirst let’s get the latest Angular CLI: npm install -g @angular/cli Next we want to create a simple project to test this out in using the...
The Tech PlatformFeb 231 minHow to Call Event-Stream APIs in AngularIn this post, we will tell you how this API was called in Angular (to refresh inbox when a new mail arrives or a mail is sent to trash in...
The Tech PlatformFeb 72 minHow to Create TypeScript Aliases?Open your tsconfig.json file. Set baseUrl value (under compilerOptions) as “src” instead of “.” Add “paths” under compilerOptions. Start...
The Tech PlatformFeb 43 minSimple Steps to Convert an ASP.NET Core with Angular App to a Desktop AppIn this blog, we are going to walk through how to convert an ASP.NET Core with Angular (2 to 9+) web application to a desktop app. We are...
The Tech PlatformJan 242 minHow to Cancel API Requests If You Are Using Observable Pipe in AngularIn an e-mail sign up form, async validation was used to check if typed username was taken or not. “updateOn” value was set as ‘blur’ but...
The Tech PlatformJan 225 min11 Best Angular UI Component LibrariesUser Interface makes the first impression about your application on users mind. A good User Interface encourages the user to use the...