In this video you will learn all about Angular routing so that you can start building your dream project soon.

ng-bootstrap link : https://ng-bootstrap.github.io/#/home
Angular-FortAwesome Link : https://github.com/FortAwesome/angular-fontawesome

Generate an application with routing enabled

ng new angular-routing --routing

The following command uses the Angular CLI to generate a basic Angular application with an application routing module, called AppRoutingModule, which is an NgModule where you can configure your routes. The application name in the following example is angular-routing.

Add components for routing

ng generate component login

To use the Angular router, an application needs to have at least two components so that it can navigate from one to the other. To create a component using the CLI, enter the following at the command line where login is the name of your component

Repeat this step for a second component but give it a different name. Here, the new name is forgot-password.

ng generate component forgot-password

again for not-found
ng generate component not-found

Defining a basic route

we first define all the basic route using routerLink for login, forgot-password,
then
Setting up wildcard routes
{ path: '**', component:  }
if user type or try to go to a path which is not present in the application then we will redirect the user to page-not found component

Lazy loading

You can configure your routes to lazy load modules, which means that Angular only loads modules as needed, rather than loading all modules when the application launches. Additionally, you can preload parts of your application in the background to improve the user experience.

Preventing unauthorized access

Use route guards to prevent users from navigating to parts of an application without authorization. The following route guards are available in Angular:

---- CanActivate
```
export class YourGuard implements CanActivate {
 canActivate(
   next: ActivatedRouteSnapshot,
   state: RouterStateSnapshot): boolean {
     // your  logic goes here
 }
}
```

watch this video till the very end manything you will learn about a real world project

Source code Link: https://github.com/Tariqu/routing  

#angular #web-development #webdev #javascript

Everything You Need to Know About Angular Routing
28.10 GEEK