This chapter introduces how to configure and use Web Workers in Rsbuild project.
Web Workers are a type of JavaScript program that runs in the background, independently of other scripts, without affecting the performance of the page. This makes it possible to run long-running scripts, such as ones that handle complex calculations or access remote resources, without blocking the user interface or other scripts. Web workers provide an easy way to run tasks in the background and improve the overall performance of web applications.
Web Workers are first-class citizens of Rspack, which means you don't need any loader to use web workers directly in Rspack or Rsbuild projects.
For example, create a file called worker.js
:
Then use this worker in the main thread:
For more details, please refer to Rspack - Web Workers.
worker-loader
is no longer maintained, it is recommended to use thenew Worker()
syntax.
If your project already uses worker-loader
, or you want to use the inline
and other features provided by worker-loader
, you can use worker-rspack-loader as an alternative to worker-loader
in the Rsbuild or Rspack project.
By default, the worker script will be emitted as a separate chunk. This script supports uploading to CDN, but must obey the same-origin policy.
If you want your worker scripts to be accessible across domains, a common solution is to load via importScripts (not subject to CORS), you can refer to the following code:
For detailed discussions on cross-domain issues, please refer to Discussions - webpack 5 web worker support for CORS?
Rsbuild supports building Web Workers outputs independently, which is helpful when you need to provide Web Workers outputs for use by other applications.
You can set Rsbuild's output.target configuration to 'web-worker'
, and Rsbuild will generate build outputs suitable for the Web Workers environment.