...

/

Introducing the Angular Router

Introducing the Angular Router

Learn about the benefits of the Angular router and how to import it to navigate between different components in an Angular application.

In traditional web applications, when we wanted to change from one view to another, we needed to request a new page from the server. The browser would create a URL for the view and send it to the server. The browser would then reload the page as soon as the client received a response. It was a process that resulted in round-trip delays and a bad user experience for our applications.

Press + to interact
Routing in traditional web applications
Routing in traditional web applications

Modern web applications using JavaScript frameworks such as Angular follow a different approach. They handle changes between views or components on the client side without bothering the server. They contact the server only once during bootstrapping to get the main HTML file. Any subsequent URL changes are intercepted and handled by the router on the client. These types of applications are called single-page applications (SPAs) because they do not cause a full reload of a page.

Press + to interact
SPA architecture
SPA architecture
...