Tips and tricks on how to use Angular routes

One of the essential features of Angular is routing, which allows you to navigate between different components of your application. In this article, we’ll explore some tips and tricks for using Angular routes effectively. Use Lazy Loading Lazy loading is a technique that loads a component only when it’s needed. By using lazy loading, you …

End-to-end testing in Angular applications

End-to-end testing (E2E) is an essential part of the development process to ensure that the application functions as expected from the user’s perspective. In this article, we’ll explore end-to-end testing in Angular projects, its benefits, and how to implement it. What is End-to-End Testing?End-to-end testing is a testing methodology used to test the entire application …

Release on Angular

What’s going on in Angular 11

Angular 11 is here, and it’s a big release. You can read the full changelog here, but I’ve rounded up some of the most interesting things we’re seeing so far. Dynamic imports for lazy-loaded modules are no longer a part of Angular’s core. In Angular, the dynamic import feature was a way to load modules …