# Shared
The `shared` configuration is used to share common dependencies between consumers and producers, reducing the runtime download volume and thus improving performance. `shared` allows you to configure rules for reusing dependency versions. You can learn more about the scenarios where `shared` is applicable and how to use `shared` through the [FAQ](#faq).
- Type: `PluginSharedOptions`
- Required: No
- Default: `undefined`
The `PluginSharedOptions` type is as follows:
```tsx
type PluginSharedOptions = string[] | SharedObject;
interface SharedObject {
[sharedName: string]: SharedConfig;
}
interface SharedConfig {
singleton?: boolean;
requiredVersion?: string;
eager?: boolean;
shareScope?: string;
import?: string | false;
allowNodeModulesSuffixMatch?: boolean;
treeShaking?: TreeShakingConfig;
}
interface TreeShakingConfig {
mode: 'server-calc' | 'runtime-infer';
usedExports?: string[];
}
```
- Example
```ts
new ModuleFederationPlugin({
name: '@demo/host',
shared: {
react: {
singleton: true,
},
'react-dom': {
singleton: true,
},
},
//...
});
```
## Singleton
- Type: `boolean`
- Required: No
- Default: `false`
Whether to allow only one version of the shared module within the shared scope (singleton mode).
- If set to true, singleton mode is enabled; if set to false, singleton mode is not enabled.
- If singleton mode is enabled, the shared dependencies between the remote application components and the host application will only be loaded once, and a higher version will be loaded if the versions are inconsistent. A warning will be given for the party with the lower version.
- If singleton mode is not enabled, and the shared dependencies between the remote application and the host application have different versions, each will load their own dependencies.
## RequiredVersion
- Type: `string`
- Required: No
- Default: `require('project/package.json')[devDeps | dep]['depName']`
The required version, which can be a version range. The default value is the current application's dependency version.
- When using shared dependencies, it will check whether the dependency version is greater than or equal to `requiredVersion`. If it is, it will be used normally. If it is less than `requiredVersion`, a warning will be given in the console, and the smallest version available in the shared dependencies will be used.
- When one party sets `requiredVersion` and the other sets `singleton`, the dependency with `requiredVersion` will be loaded, and the `singleton` party will directly use the dependency with `requiredVersion`, regardless of the version.
## Eager
:::warning
Setting `eager` to true will package the shared dependencies into the entry file, which may result in a large entry file size. Use with caution.
:::
- Type: `boolean`
- Required: No
- Default: `false`
Whether to immediately load the shared module.
Under normal circumstances, you need to enable lazy entry, and then asynchronously load shared modules on demand. If you want to use shared but do not want to enable lazy entry, you can set `eager` to true.
## shareScope
- Type: `string`
- Required: No
- Default: `'default'`
share scope name, default value is `'default'` .
## import
- Type: `string | false`
- Required: No
- Default: `undefined`
Control import path of shared dependencies, default value is `undefined` .
If set to `false`, this shared will not be packaged into the product, and only the `shared` provided by the consumer will be used. Therefore, please make sure that the consumer has provided the corresponding `shared` before setting.
## allowNodeModulesSuffixMatch
- Type: `boolean`
- Required: No
- Default: `false`
Enables a fallback lookup that matches shared modules by the portion of their resolved path that appears after `node_modules/`. Turn this on when your host and remote resolve the same package through different absolute paths (for example, due to pnpm hoisting, symlinks, or custom bundler loaders) but you still want them to be considered the same shared module.
> Previously this option was called `nodeModulesReconstructedLookup`.
## treeShaking
- Type: `TreeShakingConfig`
- Required: No
- Default: `undefined`
Configures tree-shaking behavior for shared dependencies. Enabling tree shaking for shared dependencies can reduce the size of the shared bundle.
> Rspack is the recommended bundler for this capability, and the docs/examples prioritize Rspack usage.
### usedExports
- Type: `string[]`
- Required: No
- Default: `undefined`
Manually **add** the exports used from the shared dependency.
### mode
- Type: `'server-calc' | 'runtime-infer'`
- Required: No
- Default: `undefined`
Configures the loading strategy for tree-shaken shared dependencies.
- `runtime-infer`: infers based on the consumer’s `usedExports`. If the provider’s `usedExports` satisfies the consumer’s `usedExports`, it uses the provider’s `shared`; otherwise it uses the consumer’s own `shared`. If neither satisfies the requirement, it falls back to the full bundle.
- `server-calc`: decides whether to load the shared dependency based on the Snapshot delivered by the server.
### filename
- Type: `string`
- Required: No
- Default: `undefined`
Specifies the output filename for the tree-shaken shared module.
## FAQ
### When to use shared dependencies
Consuming modules across projects often encounters issues such as **duplicate dependency loading** and **singleton restrictions**. These issues can be resolved by setting up `shared`.
- (Consumer Consumption) The third-party packages used in the modules provided by the producer are widely used in the consumer, such as `lodash.get`
- (Consumer Consumption) The third-party packages used in the modules provided by the producer have singleton requirements, such as `react`
- (Consumer Consumption) The third-party packages used in the modules provided by the producer are used in the consumer, have a large dependency volume, and do not support tree shaking, such as `lodash` (not used on demand)
- (Consumer Consumption) The third-party packages used in the modules provided by the producer are used in the consumer, have a large dependency volume, support tree shaking, but the exposed modules are all used, such as `antd`
At this point, you can add the corresponding dependencies to the `shared` configuration.
### How to use shared dependencies
Depending on the use case, {props.name || 'Module Federation'} supports two forms of shared dependency configuration: array and object. The former is suitable for most scenarios, while the latter is suitable for complex customization needs.
**Array Format (General Scenario)**
Simply add the corresponding dependencies to the `shared` configuration in the {props.name || 'Module Federation'} build configuration, for example:
{props.arrayShared || React.createElement(ArrayShared)}
**Object Format (Customized Configuration)**
Add the shared dependencies in the `shared` configuration of the {props.name || 'Module Federation'}, with the `key` being the dependency name and the `value` being the provided configuration.
{props.objectShared || React.createElement(ObjectShared)}