Federate a Module

Module Federation is a concept that allows developers to share code between applications at run-time. It is a way of doing micro-frontends, but it can also be used to share code between applications that are not micro-frontends.

In the context of Module Federation, a module can be thought as any piece of code, functionally independent, that can be reused in different applications. It can be a component, a service, a library, a utility, etc.

In order to share a module, it must be federated. This means that the module must be configured to be shared, and the application that wants to use it must be configured to use it.

Nx includes first class support for Module Federation for React and Angular applications. This means that you can federate modules in your workspace with a few simple commands.

Assumption

With this recipe we assume that you have already created a workspace with at least one React or Angular Module Federation host application. If you haven't, you can follow the Create a Host Recipe.

Step 1: Create the module

We will create a module that exports a hello function. Since we are using Nx, we will create a library for this module.

Create a library

โฏ

nx generate @nx/js:library --name=hello --unitTestRunner=jest --projectNameAndRootFormat=as-provided

Update the hello.ts file with the following code:

hello/src/lib/hello.ts
1export default function hello(): string { 2 return 'Hello from Nx'; 3} 4

Update hello/ barrel file index.ts with the following code:

hello/src/index.ts
1export { default } from './lib/hello'; 2

Step 2: Federate the module

Now that we have created the module, we need to configure it to be federated.

โฏ

nx generate @nx/react:federate-module hello/src/index.ts --name=hello --remote=greeting --projectNameAndRootFormat=as-provided

Remote does not exist

If the remote provided does not exist (in this instance greeting), Nx will create it for you.

This command will:

  • Adds a module entry to the greeting remote module federation config file.
greeting/module-federation.config.ts
1import { ModuleFederationConfig } from '@nx/webpack'; 2 3const config: ModuleFederationConfig = { 4 name: 'greeting', 5 exposes: { 6 './Module': './src/remote-entry.ts', 7 './Hello': 'hello/src/index.ts', // <-- this line was added, 8 }, 9}; 10export default config; 11
  • Adds a Typescript path mapping to the greeting/Hello module in your root TSConfig file.
/tsconfig.base.json
1{ 2 "paths": { 3 "greeting/Module": ["greeting/src/remote-entry.ts"], 4 "greeting/Hello": ["hello/src/index.ts"] // <-- this line was added 5 } 6} 7

Step 3: Use the module

Update the host application to use the federated module.

host/module-federation.config.ts
1import { ModuleFederationConfig } from '@nx/webpack'; 2 3const config: ModuleFederationConfig = { 4 name: 'host', 5 remotes: ['greeting'], // <-- Ensure that greeting remote is listed here 6}; 7 8export default config; 9
host/src/app/app.tsx
1import hello from 'greeting/Hello'; 2 3export function App() { 4 return <div>{hello()}</div>; 5} 6 7export default App; 8

If you are using Angular, you would update the application in a similar fashion to use the federated module.

Step 4: Run the application

Just run the application as usual.

โฏ

nx serve host

To start the application, use the following address: http://localhost:4200. Once opened, you'll see the message "Hello from Nx". This message is loaded from the greeting remote, which runs on port 4201.