Subscribe

Angular lazy loading routes

✍️

Lets research and implement lazy loading routes in Angular.

30 Oct, 2020 · 2 min read

The other day we looked into Angular routing, this was the basic setup, and it will work well.

But today, let’s look at something very cool in Angular, Lazy loading routes!

This is how it works very high level.

Everything is loaded on load in our previous example, so once we open the application, all routes and modules are registered and loaded.

With lazy loading, the routes and modules for that route are only loaded once we access it.

To make it more visually understanding, see this GIF on how it works without lazy loading.

As you can see, we are switching routes, and no new calls are being performed.

Implementing a lazy loaded route

If you want to work along this GitHub branch is where I’m starting from.

First, let’s generate a new component with its routing and module.

ng generate module lazy --route lazy --module app.module

The component/module needs its routing and module to enable lazy loading.

Now let’s register this component in our app-routing.module.ts.

const routes: Routes = [
  // Other routes
  {
    path: 'lazy',
    loadChildren: () => import('./lazy/lazy.module').then((m) => m.LazyModule),
  },
];

As you can see, instead of using the component, we use loadChildren, where we pass the module and then access the actual module.

Let’s also add this route in app.component.html.

<h1>Our first angular app</h1>
<nav>
  <ul>
    <li><a routerLink="/">Empty homepage</a></li>
    <li><a routerLink="/welcome">Welcome</a></li>
    <li><a routerLink="/second">Second</a></li>
    <li><a routerLink="/second/child">-> Second ~ Child</a></li>
    <li><a routerLink="/lazy">Lazy</a></li>
  </ul>
</nav>
<hr />
<router-outlet></router-outlet>

If we run this scenario, we see that once we click on our lazy route, it loads a new script (the module).

Angular lazy loading

So this will make sure the initial load of our app is smaller, which is fantastic.

Now let’s add some actual data to our app to see the difference.

Modify lazy.component.ts so it does some data call.

constructor(private http: HttpClient) {
  this.http.get(`https://reqres.in/api/users?page=2`).subscribe(res => {
    console.log('load done');
  })
}

We don’t need anything fancy to demonstrate the difference.

Now check the following GIF to see if it makes a difference!

Lazy load difference

You can find this complete code on this GitHub repo.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Angular dynamic classes using ngClass

31 Mar, 2021 · 2 min read

Angular dynamic classes using ngClass

Angular dynamically change form validators

30 Mar, 2021 · 3 min read

Angular dynamically change form validators

Join 2099 devs and subscribe to my newsletter