Configuring Routes
Manage routes effectively in Angular applications.
Configuring Routes is a free Angular Academy lesson on CoddyKit — lesson 1 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Angular Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.
1
Configuring Routes in Angular
This lesson introduces Angular routing, a way to navigate between views and manage URLs in your app.

2
What is Routing?
Routing helps you navigate between different components or pages in your Angular application based on the URL.
3
Setting Up Routing Module
Create a routing module when starting your project or later using the Angular CLI:
ng generate module app-routing --flat --module=app4
Defining Routes
Routes are defined as an array of paths linked to components:
const routes: Routes = [
{ path: 'home', component: HomeComponent },
{ path: 'about', component: AboutComponent }
];5
Router Outlet
Use <router-outlet></router-outlet> to render matched components dynamically based on the route.
<router-outlet></router-outlet>6
Navigating with routerLink
Navigate between views using the routerLink directive:
<a routerLink="/home">Home</a>7
Navigating Programmatically
You can also navigate programmatically using the Router service:
this.router.navigate(['/home']);8
9
Wildcard Routes
Handle undefined paths using wildcard routes to display a custom 404 page:
{ path: '**', component: PageNotFoundComponent }10
Summary
You now understand routing basics and can configure routes in Angular apps effectively. Great work!

Frequently asked questions
Is the “Configuring Routes” lesson free?
Yes — the full text of “Configuring Routes” is free to read here on the web, and the Angular Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Angular Academy course, upgrade to CoddyKit PRO.
What will I learn in “Configuring Routes”?
Manage routes effectively in Angular applications. You practise Angular Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Angular Academy?
No prior experience is required. Angular Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 3, so you can start here or from the beginning and move at your own pace.
How long does the “Configuring Routes” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Angular Academy lesson?
Yes. Every Angular Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- Configuring Routes
- Route Guards
- Lazy Loading Modules