RxJS best practices in Angular
Posted on September 14, 2023
Angular, one of the leading front-end frameworks, brings the mighty RxJS library to the forefront for handling asynchronous operations. While RxJS empowers developers to master intricate data flows seamlessly, it also introduces a set of challenges when not wielded with care. Memory leaks, the labyrinth of nested subscribes, and improper use of observables can all cast a shadow on your Angular app
Real-Time Applications with Azure SignalR, Angular and .Net Core
Posted on July 10, 2023
We are creating a real-time chat application with a professional and user-friendly interface. The application allows users to enter their names, start a chat session, and exchange messages in real-time. We are using Angular, SignalR, and .NET Core to develop a real-time chat application.
Angular v16 Signals - The New Reactivity Model
Posted on May 28, 2023
The angular team introduces Signals in '@angular/core' for reactive data sharing in angular version 16. Components automatically update when a signal value changes. Signals address scalability issues with 'Zone.js' for better change detection. We will discuss this in detail and look for demos and real use-case scenarios.
New journey of Angular v16
Posted on May 21, 2023
Angular version 16 has major changes that will greatly impact Angular's future, popularity, and the lives of Angular developers! There's no denying that every new version of Angular introduces many exciting features, and Angular 16 will be no different. Angular is undergoing a sort of revival, and version 16 marks just the initial stage of this resurgence.
Angular: Using Webpack Module Federation, to build Scalable web architecture called Microfrontend
Posted on April 9, 2023
In this article, we will discuss about Microfrontend implementation and what is the importance of building scalable web applications. We will be using Webpack Module Federation as a tool to build Microfrontends.
Angular Authentication using JWT token
Posted on March 28, 2023
Web applications require authentication, which involves verifying the identity of a user, so JWT (JSON Web Token) is a popular mechanism for authenticating users.