Differences Between Angular 5 and Angular 6
Angular is an open-source front end framework used for building single-page client applications using Typescript and HTML To move quickly in a future release of Angular 6 has focused more on the toolchain instead of focusing on the underlying components. If you think Angular 6 is an entirely different version of angular, then you are […]
Reactive Forms (Angular)
We all know that Angular Application is a reactive system. We have two categories of form structures in Angular: Reactive Forms Template Driven Forms. In template driven forms, the template directives are used. Whereas in reactive forms, we could build our own representation of the form in the components. Thus, we could always opt for […]
Lint Driven Development
It is no wonder that “Lint Driven Development – LDD” is one of the most essential development approach that every developer should follow up! It is an integral part of every developer’s toolbox! If you could agree my statement, then you’re already on the track of super cool development. If not, then I can get […]
Angular Lazy Loading
In this blog, we will be learning about lazy loading in angular. The main concept of lazy loading is that don’t load something which you don’t need. Lazy loading is a useful technique for reducing the size of the bundle when the app loads initially which improves the app loads time thus improving the user […]
Angular Flex-Layout
Flex layout is a package made for angular to use CSS flexbox features. The flex layout is used to display the elements within the flexbox container to be automatically arranged based on the parent container. Flex layout is used for building a layout structure. In this blog, we will be learning how to use the […]
Materialise your Angular App
As much as I love Angular, I also recognize that there are a few things that could make your Angular App look even more stunning without much effort! So, let’s go ahead and change your life in about 5 minutes by getting productive with Material Design using Angular Material in your Angular CLI app. So, […]
SwitchMap in rxjs
Let’s dive deep into switchMap with an example, so it helps as to understand what is it and when to use it. Say we need to implement functionality for traffic signal which consists of 4 roads(A, B, C, D) meeting at a junction. The signals of these roads can be controlled either manually or automatically. […]