Normally, we don't need to use Node libs on the browser side. However, it is possible to use some Node libs when the code will run on both the Node side and the browser side, and Node Polyfill provides browser versions of polyfills for these Node libs.
By using @rsbuild/plugin-node-polyfill, Node core libs polyfills are automatically injected into the browser-side, allowing you to use these modules on the browser side with confidence.
Rslib uses @rsbuild/plugin-node-polyfill to provide the Node Polyfill feature.
Then add the plugin into the plugins field.
For projects with bundle
enabled, the Node Polyfill will be injected and included in the output.
For projects with bundle
disabled, polyfills are not injected into the output by default. To avoid inlining the polyfill in every module. The modules are externalized and need to be added to dependencies manually, follow these steps:
output.external
with resolvedPolyfillToModules
, which you can import from @rsbuild/plugin-node-polyfill. This will externalize the polyfill modules to the installed polyfill dependencies.With the following steps, every usage of the polyfill module will be replaced by the corresponding module in the externals
field. Checkout the
Check out the documentation of @rsbuild/plugin-node-polyfill, all the configurations are applicable for Rslib.