Rsbuild comes with a built-in dev server designed to improve the development experience. When you run the rsbuild dev or rsbuild preview commands, the server will start, providing features such as page preview, routing, and hot module reloading.
By default, the Rsbuild server's base path is /. You can access output files like index.html and assets in the public folder through http://localhost:3000/.
Rsbuild supports modifying the base path of the server through server.base. If you to access these files through http://localhost:3000/foo/, you can configure the following:
After starting the dev server, you can access /rsbuild-dev-server to view all static assets generated during the current build.
For example, open http://localhost:3000/rsbuild-dev-server in the browser, you will see:
 
Rsbuild server offers a set of default routing convention, and allows users to customize it through configurations.
Rsbuild server will generate the corresponding page route based on the server.base and source.entry configurations.
When entry is index, the page can be accessed through /; when entry is foo, the page can be accessed through /foo.
When server.base is /base, the index page can be accessed through /base and the foo page can be accessed through /base/foo.
By default, when the request meets the following conditions and the corresponding resource is not found, it will fallback to index.html:
GET or HEAD requesttext/html (the request header accept type is text/html or */*)When Rsbuild's default server.htmlFallback configuration cannot meet your needs, for example, if you want to be able to access main.html when accessing /, you can set it up using server.historyApiFallback.
Normally, / points to the dist root directory, and the HTML file is output to the dist root directory. At this time, the corresponding HTML page can be accessed through /some-path.
If you output HTML files to other subdirectories by modifying output.distPath.html, you need to access the corresponding HTML page through /[htmlPath]/some-path.
For example, if you set the HTML file to be output to the HTML directory, index.html will be accessed through /html/, and foo.html will be accessed through /html/foo.
Rsbuild has a built-in lightweight dev server, which is different from the dev servers built into Rspack CLI or webpack CLI. There are some differences between them, including different configuration options.
Compared with the dev server built into Rspack CLI, Rsbuild's dev server has the following differences:
connect, which has fewer dependencies and faster startup speed compared to express used by @rspack/dev-server.Rsbuild does not support using Rspack's devServer config. Instead, you can use Rsbuild's dev and server configs.
In Rsbuild, dev contains some configs that are only work in development mode, while the server config works for both dev and preview servers.
Below are the Rsbuild configs that correspond to the Rspack CLI's devServer config:
For more configurations, please refer to Config Overview.
Rsbuild's middleware implementation is built on connect, a lightweight HTTP server framework, and uses the standard Node.js request and response objects for handling HTTP interactions.
Rsbuild provides three ways to register middleware:
use method to register middleware.When migrating from other server frameworks (such as Express), the original middleware may not be used directly in Rsbuild. For example, the req.params, req.path, req.search, req.query and other properties provided by Express cannot be accessed in the Rsbuild middleware.
If you need to reuse existing middleware in Rsbuild, you can use the following method to introduce the server application as a whole as middleware:
If you want to integrate Rsbuild dev server into a custom server, you can get the instance methods of Rsbuild dev server through the createDevServer method of Rsbuild and call them on demand.
For details, please refer to Rsbuild - createDevServer.