What You Need To Know About React’s Strict Mode
React Strict Mode: An Introduction React is a popular JavaScript library for building user interfaces. It is used by developers all over the world to create complex web applications with
React Strict Mode: An Introduction React is a popular JavaScript library for building user interfaces. It is used by developers all over the world to create complex web applications with
Chart.js is a free, open-source JavaScript library for data visualization. Its one of the most popular yet simplest visualization libraries in JavaScript. Chart.js is written in JavaScript, therefore it is
Angular Material library comes with many cool pre-built themes. However, do you know that it is very easy to create a new custom theme in just under 2 minutes. Yep
Google Material design system icons are simple, modern and friendly to use and to visualize. The icons are optimized for common platforms and screen resolutions. The recommended way of including
Angular’s default Change Detection does a pretty good job. However sometimes when the component size increases, it is better to change the Change Detection Strategy to OnPush to gain performance.
The other day I was navigating through the unit tests code written by one of my juniors. That part of the code was testing the Store Selectors. For beginners it
Angular Material offers an easy way to use the existing Material Icons. For example <mat-icon>computer</mat-icon> Here is a more real example <mat-list> <h3 mat-subheader>Items</h3> <mat-list-item> <mat-icon>computer</mat-icon> <h4>Computer</h4> </mat-list-item> <mat-list-item> <mat-icon>headset</mat-icon>
If you have put your hands on Angular, then you most probably have used Observables. Aren’t they cool! They make angular components reactive and make developer life stress free (or
Recently, while working on an Angular app, I encountered a situation where I needed to load an external library when a module is loaded lazily. Normally, in such cases a