Rsbuild plugin for Zephyr
npm install zephyr-rsbuild-pluginAn Rsbuild plugin for deploying applications with Zephyr Cloud. This plugin integrates seamlessly with Rsbuild's fast bundling to enable deployment of your applications with Module Federation support.
The fastest way to get started is to use create-zephyr-apps to generate a new Rsbuild application with Zephyr integration:
``bash`
npx create-zephyr-apps@latest
For more information please refer to our documentation.
`bashnpm
npm install --save-dev zephyr-rsbuild-plugin
Usage
$3
Add the plugin to your Rsbuild configuration:
`javascript
// rsbuild.config.js
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
import { withZephyr } from 'zephyr-rsbuild-plugin';export default defineConfig({
plugins: [
pluginReact(),
withZephyr(), // Add Zephyr plugin
],
});
`$3
`javascript
// rsbuild.config.js
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
import { withZephyr } from 'zephyr-rsbuild-plugin';export default defineConfig({
plugins: [
pluginReact(),
withZephyr({
wait_for_index_html: true, // Wait for HTML processing
}),
],
});
`$3
`typescript
// rsbuild.config.ts
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
import { withZephyr } from 'zephyr-rsbuild-plugin';export default defineConfig({
plugins: [pluginReact(), withZephyr()],
});
`$3
`typescript
// rsbuild.config.ts
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
import { pluginModuleFederation } from '@module-federation/rsbuild-plugin';
import { withZephyr } from 'zephyr-rsbuild-plugin';export default defineConfig({
plugins: [
pluginReact(),
pluginModuleFederation({
name: 'my-app',
remotes: {
'shared-ui': 'shared_ui@http://localhost:3001/remoteEntry.js',
},
shared: {
react: { singleton: true },
'react-dom': { singleton: true },
},
}),
withZephyr(), // Add after Module Federation
],
});
`Features
- 🚀 Fast builds with Rsbuild's Rust-based bundler
- 🏗️ Full Module Federation support
- 📦 Automatic asset optimization and caching
- 🔧 Zero-config setup for simple applications
- 📊 Build analytics and monitoring
- 🌐 Global CDN distribution
- ⚡ Hot module replacement in development
- 🎯 Simple plugin integration
Module Federation Support
This plugin provides comprehensive Module Federation support:
- Host Applications: Consume remote modules from other applications
- Remote Applications: Expose modules for consumption by host applications
- Shared Dependencies: Efficient sharing of common libraries
- Dynamic Imports: Runtime loading of remote modules
- Automatic Vendor Federation: Smart dependency sharing
Getting Started
1. Install the plugin in your Rsbuild project
2. Add it to your Rsbuild configuration plugins array
3. Configure Module Federation (if needed) for microfrontends
4. Build your application with
npm run build
5. Your app will be automatically deployed to Zephyr CloudBuild Scripts
Add these scripts to your
package.json:`json
{
"scripts": {
"dev": "rsbuild dev",
"build": "rsbuild build",
"preview": "rsbuild preview"
}
}
`Requirements
- Rsbuild 1.0 or higher
- Node.js 18 or higher
- Zephyr Cloud account (sign up at zephyr-cloud.io)
Examples
Check out our examples directory for complete working examples:
- rsbuild-sample-app - Basic Rsbuild setup with Zephyr
API Reference
$3
Creates an Rsbuild plugin for Zephyr integration.
#### Parameters
-
options (optional): Configuration options
- wait_for_index_html?: boolean` - Wait for HTML processing before deployment#### Returns
An Rsbuild plugin that can be added to the plugins array.
We welcome contributions! Please read our contributing guidelines for more information.
Licensed under the Apache-2.0 License. See LICENSE for more information.