by Didier FRANC

Straightforward code splitting with React and webpack

Everything seemed perfect until your app size increased too fast …

1*CNeQyaChrTh0H3ovOd9Dgg

Introduction

You’re a big fan of React and even bigger fan of the modern JavaScript development stack. React, Redux, ES6, Babel, and webpack are your favorite toys, so don’t they have any secrets for you? Sure they do — which you’ll see after you read the following.

This post does not aim to be exhaustive, but will describe a straightforward and modern method to solve a problem related to the way we like to code.

The problem

Here is a good example. As you can see, webpack created two JavaScript files: bundle.js and vendor.js. It’s the first step of code splitting, separating your vendors from your own code. This is well-documented in the new webpack documentation.

1*u1CSFKmreuN4KjulOJFZAg
Type yarn build and you’ll see the tragedy …

It’s a prerequisite for the next steps. Sharing vendors such as React and Redux with all your components is essential. But as you can see, our app size is close to ~2MB without its images, fonts, and other assets. Our app will take seconds to load and even more with a crappy mobile connection. Why don’t we split it into multiple chunks, which will load only when we need it? Easier said than done.

Where to start ?

There are many ways when you care about speed and performance: one of them is Server Side Rendering, but it’s not the subject today ?.

In this article, we’re exploring code splitting with webpack, and the best place to start is the webpack repo itself. There are other solutions as well. That being said, we have to make a choice.. And the winner is … import() (formerly named System.import()). I call it the “modern way”.

System.import has been deprecated.
medium.com

1. Be smart

There is no magic tool, and to get the best compromise you’ll probably have to use your brain ?. For example, vendor.js shouldn’t contain every library, only those which are “global” like React, Redux, or moment.

1*KHjkCbjOTrCwaUSdMabdAw
This is not package.json

2. Start code splitting (the real one)

Loading a component (or any ES module) this way will be interpreted as a split point by webpack.

Now, imagine we have the following at the root of our app. The problem is the Home component. With its exotic library, it is relatively big compared to the rest of the app. Reminder: for now everything is packed in the same bundle and loaded at the same time.

Let’s create a simple wrapper component which will asynchronously load and render our Home component. It will be loaded only when you’re logged in.

We can make it even simpler by standardizing this method. I externalized it as the tiny react-code-splitting. And the final result is visible here:

If you want to see this snippet in context, have a look at redux-react-starter.

3. Output

As you can see, webpack created a new file named 0.[chunkhash].js. It’s our old bro Home ?.

1*Fef7AyiO4ZCxS6gYp0knJg
The result from didierfranc/redux-react-starter

4. Enjoy the benefits

As you can see, the Home component (0.bf87aaa616cea4a1ed40.js) was loaded on demand, just after I logged in. Note that performance will be even better if you take care with caching and http/2. You can make Lighthouse Report your favorite tool to benchmark your app performance.

1*F4WvfKTOqiQKBw1MbKVmgw
Chrome > DevTools > Network Tab

What’s next ?

Don’t hesitate to explore long term caching, offline capabilities, and so on. To put it simply: how to make a progressive web application, again and again.

You don’t want to miss any of my articles ? follow me on twitter @DidierFranc