# Extended Tutorial

Build a small but realistic app while learning the Aurelia router, component communication, and real-world navigation patterns.

{% embed url="<https://codesandbox.io/p/devbox/bold-cache-cyn542?embed=1>" %}

## What you will build

* A Dashboard and a Projects area
* Nested routes for Projects (Overview + Activity)
* A project detail view with route parameters
* Filterable lists with query params you can share
* Router events and active navigation styling
* Multi-locale internationalization (i18n)
* Form validation with localized error messages
* Modal dialogs for confirmations and editing
* Centralized state management

## Prerequisites

* Completed the [Hello World Tutorial](/getting-started/quick-start-guide.md)
* Basic TypeScript and HTML

## Steps

### Core (Steps 1–4)

1. [Step 1: Project setup + app shell](/getting-started/extended-tutorial/step-1-project-setup.md)
2. [Step 2: Routing + nested layouts](/getting-started/extended-tutorial/step-2-routing-and-layout.md)
3. [Step 3: Overview page + filters + events](/getting-started/extended-tutorial/step-3-projects-overview.md)
4. [Step 4: Detail route + guards](/getting-started/extended-tutorial/step-4-project-detail-and-guards.md)

### Advanced routing (Steps 5–6)

5. [Step 5: Router events + polish](/getting-started/extended-tutorial/step-5-router-events-and-polish.md)
6. [Step 6: Route data + auth roles](/getting-started/extended-tutorial/step-6-route-data-and-roles.md)

### Aurelia packages (Steps 7–10)

7. [Step 7: Internationalization (i18n)](https://github.com/aurelia/aurelia/blob/master/docs/user-docs/getting-started/extended-tutorial/step-7-internationalization.md)
8. [Step 8: Form validation with i18n](https://github.com/aurelia/aurelia/blob/master/docs/user-docs/getting-started/extended-tutorial/step-8-form-validation.md)
9. [Step 9: Dialogs](https://github.com/aurelia/aurelia/blob/master/docs/user-docs/getting-started/extended-tutorial/step-9-dialogs.md)
10. [Step 10: State management](https://github.com/aurelia/aurelia/blob/master/docs/user-docs/getting-started/extended-tutorial/step-10-state-management.md)

If you are new to Aurelia, start with steps 1–4 to learn routing fundamentals. Steps 5–6 cover advanced routing patterns. Steps 7–10 introduce additional Aurelia packages for building production-ready applications.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aurelia.io/getting-started/extended-tutorial.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
