How to simulate a double click event (with a single click )
we can easily simulate a double click with a single click by handling the click events and implementing a logic…
How to handle (Angular) validator errors when a user enters a value not included in a list?
creating and use validators to report errors when the input value (entered by user) is not in a defined list,…
Angular Bundle , How to reduce stylesheet size (in Bundle) ?
Building applications/websites using Angular has a downside – the bundle size. This directly affects the loading speed and user experience of our projects.…
Angular Interceptors
Angular interceptors are middleware-like services that can be used to intercept and modify HTTP requests and responses globally within our…
how to upgrade a globally installed package
To update a globally installed Angular package, we can use the npm command line tool. // let's update the angular…
“Git revert” VS “Git reset”
The purpose of the git revert command is to remove all the changes a single commit made to our source code repository.…
How to implement registerOnTouched method in custom component?
Let us assume, we have a custom Angular component that acts as a form control and we want to subscribe…
How do I enable the use of Validators.required for a custom component?
Let us assume, we have a custom Angular component that acts as a form control and we want to enable…
What’s new in Angular v.17?
Last month marked the 13th anniversary of Angular’s red shield. AngularJS was the starting point for a new wave of…
How to use the CSS calc() function to optmise our stylesheet
The calc() function in CSS allows us to perform mathematical calculations directly in CSS expressions. It can be used to…







