Skip to content

gaplo917/react-offload-ui-thread-research

Repository files navigation

React Offload UI Thread Research

When we develop a frontend application, we undoubtedly offload all kinds of I/O, computational tasks from UI thread to prevent UI thread is too busy and become unresponsive. However, this rule doesn't apply to current web development. The current web developmennt ONLY offload the tasks to web worker when the application encounter performance issues but NOT by the tasks' nature.

Live Demo

120Hz is coming

120Hz Web browsing is coming, the higher fps the shorter time for UI thread to process. Consider the 60Hz to 120Hz change, the "smooth UI" process cycle time changed from 16.67ms to 8.33ms, that halve the time we got from previous decade!

An I/O call is non-blocking on UI thread doesn't mean that it doesn't use the UI thread CPU time.

In addition, the business requirements, validations, UI events also become more and more complex. If you need to build a hassle-free smooth 120Hz Web application, using web workers are unavoidable.

Painful and Time-consuming web worker development

Because of the learning curve of web workers, we are tempted to do everything on UI thread like:

  • calling fragmented REST call and then aggregate together
  • calling a large GraphQL query and then apply data transformation
  • sorting, filtering and reduce differents kinds of data triggered by UI actions

It is because:

  • creating a web-worker and import existing npm modules into web worker is painful.
  • coding in a complete message driven style is not intuitive, time-consuming, and repetitive.
  • working in an async UI pattern requires more state to handle it.

Upcoming Possibility

As the ComLink abstraction(turn a web worker to RPC-style function call) and React Concurrent mode arise. I think it is time to start thinking to adopt web worker in all cases - completely decouple a data accessing layer, use browser's background thread for ALL I/O and data processing bu nature and then return to the UI thread for rendering.

Nothing is new, this was how we wrote a standard frontend application in other platforms(iOS, Android, Windows, macOS, JVM) since multi-threaded CPU appeared.

This project is a Comlink loader (Webpack) decision research.

To access the complete research findings(WIP), you could access in patreon.

Getting Started

Edit gaplo917/react-offload-ui-thread-research

or try locally

git clone https://github.com/gaplo917/react-offload-ui-thread-research.git

cd react-offload-ui-thread-research
yarn intall

# start the demo
yarn start