How to use lazy loading in react to reduce the first screen loading time

How to use lazy loading in react to reduce the first screen loading time

Recently I'm writing a react-ant-admin integration framework for quickly launching mid- and back-end projects. There are many problems encountered, the most important of which should be the access speed. I just wonder if React can use lazy loading of routes like Vue to reduce the time spent on home page rendering.

So I found a very useful wheel: @loadable/component

use

Install

npm install @loadable/component -D
# or use yarn
yarn add @loadable/component -D

How to use it in routing?

In the src/router/index.js file, write as follows:

import React from "react";
import { Route, Switch } from "react-router-dom";
import routerList from "./routes";

const router = () => {
  return (
    <Switch>
      {routerList.map((item) => {
        const { component: Component, key, path, ...itemProps } = item;
        return (
          <Route
            exact={true}
            key={key}
            path={path}
            render={(allProps) => <Component {...allProps} {...itemProps} />}
          />
        );
      })}
    </Switch>
  );
};

export default router;

In src/router/routes.js file, write as follows:

import loadable from "@loadable/component";

const Error404 = loadable(() => import("@/pages/err/404")); // Corresponding file src/pages/err/404.js
const Home = loadable(() => import("@/pages/home"));
const Demo = loadable(() => import("@/pages/demo"));

const routerList = [
  {
    path: "/",
    key: "home",
    components: Home,
  },
  {
    path: "/demo",
    key: "demo",
    components: Demo,
  },
  {
    path: "*",
    key: "404",
    components: Error404,
  },
];

export default routerList;

In the src/App.js file, write as follows:

import React from "react";
import { BrowserRouter as Router } from "react-router-dom";
import Routes from "./router";
export default function App() {
  return (
    <Router>
      <Routes />
    </Router>
  );
}

At this point, you can go to the page to check whether the js file is dynamically loaded when switching routes. If the js file is loaded after switching the route, it means the lazy loading route is successful!

Loading speed comparison

Before using @loadable/component the server bandwidth was 1M, gzip compression, the file size was about 2MB, and the server request loading time was about 4.3s

Use routing lazy loading. The server bandwidth is 1M, gzip compression, the file size is about 1MB, and the server request loading time is about 1s.

The above is the details of how React uses lazy loading to reduce the first screen loading time. For more information about how React lazy loading can reduce loading time, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • React implementation example using Amap (react-amap)
  • Detailed explanation of virtual DOM and diff algorithm in react
  • React example showing file upload progress
  • How to run the react project on WeChat official account
  • How to write CSS elegantly with react
  • Encapsulate a simplest ErrorBoundary component to handle react exceptions
  • React Fiber structure creation steps
  • Detailed explanation of the use of Refs in React's three major attributes
  • Write a React-like framework from scratch
  • Understanding and using React useEffect

<<:  A brief analysis of the game kimono memo problem

>>:  Detailed explanation of commonly used nginx rewrite rules

Recommend

Differences in the hr separator between browsers

When making a web page, you sometimes use a dividi...

JS implements simple calendar effect

This article shares the specific code of JS to ac...

JavaScript mobile H5 image generation solution explanation

Now there are many WeChat public account operatio...

CSS achieves the effect of aligning multiple elements at both ends in a box

The arrangement layout of aligning the two ends o...

Html makes a simple and beautiful login page

Let’s take a look first. HTML source code: XML/HT...

How to clear mysql registry

Specific method: 1. Press [ win+r ] to open the r...

How to print highlighted code in nodejs console

Preface When the code runs and an error occurs, w...

Notes on MySQL case sensitivity

Table of contents MySQL case sensitivity is contr...

How to modify the group to which a user belongs in Linux

Modify the group to which a user belongs in Linux...

Detailed explanation of MySQL 8's new feature ROLE

What problems does MySQL ROLE solve? If you are a...

5 Reasons Why Responsive Web Design Isn’t Worth It

This article is from Tom Ewer's Managewp blog,...

MySQL EXPLAIN statement usage examples

Table of contents 1. Usage 2. Output results 1.id...

Simple example of HTML text formatting (detailed explanation)

1. Text formatting: This example demonstrates how...

Example of implementing translation effect (transfrom: translate) with CSS3

We use the translate parameter to achieve movemen...