DEV Community

Pranjal Jain
Pranjal Jain

Posted on

Priority loading in Reactjs

When we start to create applications, We don't realize the importance of priority loading. But as we start to push out production applications, then the importance of priority loading is understood.

So what is priority loading?

In simple words...
When we want some components of our application to load before other components to reduce the initial loading time.
So when we create a react application. we often use a lot of external libraries for multiple applications. And oftentimes we overlook the size those libraries added to our application.

** But how do we find the size of those libraries? **
For this purpose, we have a very simple tool which is known as Bundlephobia
Bundlephobia is an amazing tool that helps us to determine the complete size of our package, Not only that it has a filter to show us which package is taking the most time to load. What makes it even more amazing is that we just need to upload our package.json file to get the results.

For example...
In my portfolio website pranjaljain.tech

All packages
Here you can see I have 16 packages in my Application.
And the package which takes the most time is react-particle-js.

Most time-consuming package

Total time

upon scrolling down you can see the total of how much time your complete package will if it tries to load your application on emerging 3G.

Now the main question is how to prioritize packages?

Well that can be easily achieved by Loadable components
Read more on their GitHub.

GitHub logo gregberge / loadable-components

The recommended Code Splitting library for React ✂️✨

So by using Loadable components we can select the packages which we want to load after the content is loaded.

Let's get started

First thing first...
Import Loadable Component to your React JS where you want to prioritize loading.

import loadable from "@loadable/component";
Enter fullscreen mode Exit fullscreen mode

And then add your component which you want to load after the content.

const ComponentName = loadable(() => import("./ComponentJsFileLocation"));
Enter fullscreen mode Exit fullscreen mode

And then use that component normally like any other React Component.

And it would make the component load after the content.

If you're stuck anywhere do leave a comment.
Follow me on Twitter at Twitter/pranjaljain0
Follow me on Github at github/pranjaljain0
Happy Hacking!

Top comments (5)

Collapse
 
borobudur01 profile image
borobudur01

Yep. Or just get rid of React and those additional libraries complicated layers and just use very simple logic with much faster, cleaner and future proof Vanilla Javascript.

Collapse
 
eyalandomer profile image
Maros Majba

You may be right, that vanilla JS is more future proof than a framework, but don't you think that every dev should have at least a minimal level of mastery of some JS framework ?

Collapse
 
borobudur01 profile image
borobudur01

Yes. If that dev wants to work for a company. If he works on a project with other developers chances are she/he needs to know how to work with those frameworks. Do these frameworks help coordinating work between developers? I am sure they are. Do these frameworks help starting a project faster? Probably, yes. Do they make our code cleaner, less complex, run faster or easier to work with or debug? Absolutely not.

Collapse
 
pranjaljain0 profile image
Pranjal Jain

Good point.

Collapse
 
pranjaljain0 profile image
Pranjal Jain

Yes, you're right.