import { Head, Image, Appear } from 'mdx-deck';
<title>React Performance</title>- Understand when (not) to go for performance optimization
- Monitor the performance and identify the cause
- Get familiar with right tools and techniques
- Load-time performance vs Runtime performance
- SSR, CDN, Web Workers, Caching, Throttling and Debouncing
- How a particular tool works
- (A part of) the website takes forever to load
- Navigating to different section seems sluggish
- It takes more than one click to submit a form
- DOM operations are not instantaneous
- ... And many other reasons that creates a bad UX
- Get familiar with the problem you are solving
- Identify the right tool for the task
- Profile before optimizing
- Know the cost of the optimization
- Quantify the improved performance
-
Use the production version when you deploy the app.
-
Add performance monitoring with
<React.Profiler />
to keep track of performance regressions
- Remove unnecessary modules and replace large modules with smaller alternatives
- Analyze bundle size with webpack bundle analyzer
- Serve minified bundle in production with compression webpack plugin
- Helped reducing canvas bundle size from 25.9 MB to 5.8 MB and impoved the time to interactive by 75%
- Loading less code will speed up your app
- Dynamic imports with
<React.Suspense />
andReact.lazy()
- Eager loading and prefetching dynamic imports for better UX
import LazyLoad from './components/lazy-load';
- Bulky functions executed in every single render cycle
- Memoized functions run when the results actually needs to be re-evaluated
- Don't overuse
useMemo
anduseCallback
import { Highlighter } from './components/highlighter';
{const removeUser = user => { setUser(allUsers => allUsers.filter(u => u !== user)) }
}
... And the one with useCallback
{const removeUser = React.useCallback(user => { setUser(allUsers => allUsers.filter(u => u !== user)) }, [])
}
{`const removeUser = user => { setUser(allUsers => allUsers.filter(u => u !== user)) } const removeUserCallback = React.useCallback(removeUser, []); `}
... And here is the original one
{const removeUser = user => { setUser(allUsers => allUsers.filter(u => u !== user)) }
}
- Immutability and reference equality
- A
PureComponent
is going to be usually slower and ocassionally faster - Optimze slow renders before fixing re-renders
- Virtualize large list of data with react-virtualized
import Memoize from './components/memoize';
- Bundling and minification
- Code splitting
- Memoize expensive calculations
- Virtualize long lists
- Avoid unnecessay re-renders
- Write your code naturally, code to the design
- Performance optimizations may not offset the cost it comes with
- If you aren’t measuring, you can’t even know if your optimizations are better
- Fix the slow render before you fix the re-render by Kent C. Dodds
- Use React.memo() wisely by Dimitri Pavlutin
- React, Inline functions, and Performance by Ryan Florence
- React docs on Performance optimization