Skip to content

Host Configuration

Host Configuration is an important part of building production-ready Module Federation systems. This lesson explains what host configuration means, how it works, and how to apply it with practical examples you can reuse.

Host Configuration Overview

Host Configuration lets you structure Module Federation work so it stays readable, testable, and easy to scale. Instead of ad-hoc code, you follow a clear pattern that other developers can recognise immediately.

The key is to keep host configuration focused and predictable. Start from the minimal example here, then layer in only the complexity your feature actually needs.

// host (webpack.config.js)
const { ModuleFederationPlugin } = require('webpack').container;

module.exports = {
  plugins: [
    new ModuleFederationPlugin({
      name: 'shell',
      remotes: {
        catalog: 'catalog@http://localhost:3001/remoteEntry.js',
      },
      shared: ['react', 'react-dom'],
    }),
  ],
};

// usage
const ProductList = React.lazy(() => import('catalog/ProductList'));

The host declares remotes by URL and lazy-loads exposed modules like any dynamic import.

Host Configuration Example

new ModuleFederationPlugin({
  name: 'app',
  filename: 'remoteEntry.js',
  exposes: { './Widget': './src/Widget' },
  remotes: { other: 'other@http://host/remoteEntry.js' },
  shared: { react: { singleton: true } },
});
  • Start from a minimal Host Configuration example and grow it only as needed.
  • Keep configuration explicit so Host Configuration behaves the same in every environment.
  • Name things clearly so teammates understand your Host Configuration at a glance.
  • Add tests around Host Configuration early to lock in expected behaviour.

Module Federation Cheatsheet

Key Module Federation settings related to host configuration.

Option Example Purpose
name name: 'shell' Unique container name
filename filename: 'remoteEntry.js' Remote entry manifest
exposes exposes: { './X': './src/X' } Modules a remote shares
remotes remotes: { app: 'app@url' } Remotes a host consumes
shared shared: { react: { singleton: true } } Deduplicate libraries
lazy load import('remote/Module') Load remotes on demand
Suspense <Suspense fallback={...}> Handle async loading

How Host Configuration Works in Module Federation

Host Configuration builds on Module Federation's ability to load code from another independently built and deployed application at runtime. Each app can be a host, a remote, or both.

The host declares remotes by URL and lazy-loads exposed modules like any dynamic import.

  • Remotes expose modules through a remoteEntry.js manifest.
  • Hosts declare remotes and import exposed modules dynamically.
  • Shared dependencies are deduplicated, ideally as singletons.
  • Each micro frontend builds and deploys on its own schedule.

Practical Guidance for Host Configuration

In production, host configuration needs careful version management and graceful failure handling. Align shared dependency versions and always render a fallback when a remote cannot load.

Concern Recommendation
Shared versions Use singletons with requiredVersion
Runtime errors Wrap remotes in error boundaries and fallbacks
Deployment Resolve remotes from a runtime manifest
Performance Lazy-load remotes and cache remoteEntry.js

Common Mistakes

  • Copying host configuration snippets without understanding what each line does.
  • Skipping error handling and edge cases when wiring up host configuration.
  • Leaving host configuration untested, so regressions slip into production.
  • Over-engineering host configuration before you actually need the extra flexibility.

Key Takeaways

  • Host Configuration is a core part of working effectively with Module Federation.
  • Start small and keep host configuration focused on a single responsibility.
  • Apply consistent patterns so host configuration scales across your project.
  • Test and document host configuration to keep it maintainable over time.

Pro Tip

When you get stuck on host configuration, reduce it to the smallest reproducible example first — most Module Federation issues become obvious once the noise is gone.