Angular guards are a feature that can help you in many ways when coding in Angular . For example, let’s say you have an important data file that you only want certain people to be able to access. By using a guard, you can make sure that only the people with the correct permissions […]
Comparing markForCheck and detectChanges: What’s the difference?
In Angular, there is a difference between the markForCheck and detectChanges methods. Both are used for change detection, but they serve different purposes. markForCheck The markForCheck method marks a component for check- ing even if it has already been checked. This is useful when an external event has changed something in the component and you […]
What Sets Angular Apart from Other Frameworks?
Angular has been around for nearly a decade now, and it doesn’t look like its popularity is waning anytime soon. In fact, Angular is still one of the most popular frameworks for web development. So, what makes Angular so popular? And will it still be popular in 2023? There are many reasons why Angular has […]
Optimize your Angular architecture for peak performance 2023
Angular is a powerful front-end development platform that allows developers to create single-page applications. Angular architecture refers to the way in which Angular applications are structured. Angular apps are typically divided into modules, each of which represents a different feature or area of the application. Within each module, there are various components which handle […]
How to become good at making UI for angular apps?
UI With Angular Angular is a huge framework and is probably a solution for any kind of web applications today. It is managed by Google and google comes with updates for angular every year. There are many ways to become good at making UI for Angular apps. One way is to use UI libraries. There are […]
Service worker (ngsw-config.json) configuration in Angular | Akashminds
Angular service worker In this Article , we are going to learn what is Service worker in Angular. In the way of turning an angular application into PWA (progressive web app), we use ngsw-config.json file that have all the configuration of PWA. Service worker is an important script that runs in background and separate from […]
PWA installation and configuration in angular | Akashminds
In this tutorial we are going to have an introduction to progressive web app or pwa in angular . We will start by knowing what pwa is then we will have some features of progressive web apps. Progressive web app are future of android and IOS devices as it is truly considered the future […]
What are directives in angular and types of directive in angular
Angular directive is one of core building blocks of angular which provides additional behavior to elements in your application. A directive is a behavior that can be attached to an element. It lets you associate JavaScript code with a particular HTML element. When the element is processed by Angular, it will run the associated […]
Intro to angular interceptors and uses | Akashminds
Today I am going to show how you can deal with Angular interceptors. Interceptors are an awesome thing which can be easily implemented in angular and can give you more advantages like error handling and adding headers. here I am going to show how angular interceptor works and when to use angular interceptor. What […]
Pipes in angular and creating custom pipe | Akashminds
Angular is a huge framework we can make almost everything possible in the website nowadays, it provides a number of features where we can make thing according to our requirements. With angular we can have progressive web apps , server side rendering and other rich functionalities that are really difficult in other platforms now. […]