Category: Angular

Angular Forms – Template-driven and Reactive forms

Angular Forms – Template-driven and Reactive forms

Angular Forms – Template-driven and Reactive forms Angular provides two main approaches for handling forms: template-driven forms and reactive forms. Let’s delve into each of these approaches in detail, along with examples for better...

Angular Ivy  – The Next-generation compilation and rendering pipeline for Angular applications

Angular Ivy – The Next-generation compilation and rendering pipeline for Angular applications

Angular Ivy – The Next-generation compilation and rendering pipeline for Angular applications Angular Ivy is the next-generation compilation and rendering pipeline for Angular applications. It was introduced with Angular version 9 and represents a...

Angular interview Questions and Answers Part 3 0

Angular interview Questions and Answers Part 3

What is the purpose of ngIf directive? Sometimes an app needs to display a view or a portion of a view only under specific circumstances. The Angular ngIf directive inserts or removes an element...

Angular Interview Questions Part 1 0

Angular Interview Questions Part 1

1. What is Angular Framework? Angular is a TypeScript-based open-source front-end platform that makes it easy to build applications with in web/mobile/desktop. The major features of this framework such as declarative templates, dependency injection, end to...

Steps to install specific version of nginx on Linux ubuntu 0

Steps to install specific version of nginx on Linux ubuntu

Steps to install specific version of nginx Nginx is an open source HTTP Web server and reverse proxy server. We should pronounced it as “Engine-Ex,”. It is useful to re route application/service url for...

How to use Interceptor for Angular Error handling and Authentication using Http Client and Http Interceptor 0

How to use Interceptor for Angular Error handling and Authentication using Http Client and Http Interceptor

How to use Interceptor for Angular Error handling and Authentication using Http Client and Http Interceptor How Interceptor works? It transform the outgoing service request before final send so that you can alter service...

How to manage multilevel navigation/Routing in Angualar 2, Angualar 4, Angular 5 0

How to manage multilevel navigation/Routing in Angualar 2, Angualar 4, Angular 5

How to manage multilevel navigation in Angualar 2, Angualar 4, Angular 5 In user-routing.module.ts file const appRoutes: Routes = [ { path: ‘user’, component: UserComponent, canActivate: [AuthGuardService], children: [ { path: ‘nav1’, children: [...

How to use Angular 4, Angular 5 and Angular 6 PrimeNg dropdown 0

How to use Angular 4, Angular 5 and Angular 6 PrimeNg dropdown

How to use Angular 4, Angular 5 and Angular 6 PrimeNg dropdown This tutorial will tell you how to use primeng dropdown module to make life easy for managing dropdown. To start with this...