core icon indicating copy to clipboard operation
core copied to clipboard

Module Federation is a concept that allows developers to share code and resources across multiple JavaScript applications

Results 221 core issues
Sort by recently updated
recently updated
newest added

## Description Allow timeout to be set on create script Script timeout is OS based and on windows, it can take several seconds before errorLoadRemote hook can be triggered as...

change: feat

### Describe the bug tools used: Rsbuils, React, typescript, pnpm refered react-manifest-example example. registerRemotes( [ { name: "app1", entry: `http://localhost:3002/mf-manifest.json?v=${version}`, }, ], { force: true } ); **When updating registered...

🐞 bug
team

### Clear and concise description of the problem Currently, setting the `publicPath` is forced in development, IMO it is redundant and unnecessary. If we know a URL, we can infer...

### Describe the bug This is a comparison between rsbuild and webpack terminal prints in development: rspack: ![CleanShot 2024-05-04 at 11  30 46](https://github.com/module-federation/core/assets/59400654/516c1518-da76-479c-9b06-652358a89c07) config: ```ts // rsbuild.config.ts import { defineConfig...

### Clear and concise description of the problem Usually, we will set the provider name as `@scope/name`, format with scoped package names ( like `@company/project-name` ): ```ts config.plugin('ModuleFederationPlugin').use(ModuleFederationPlugin, [ {...

## Description ## Related Issue ## Types of changes - [x] Docs change / refactoring / dependency upgrade - [ ] Bug fix (non-breaking change which fixes an issue) -...

change: docs

### Clear and concise description of the problem When I forget to change project entrypoint file to async loading , I only get the following error: ![CleanShot 2024-05-04 at 11 ...

## Description Updating translations and links. ## Related Issue General grammar fixes and adding Zephyr Cloud. Would be great if someone can fix the styling to add padding on left...

## Description Implementation of container factory for at runtime container creation ```js import {createContainer} from '@module-federation/webpack-bundler-runtime' const createdContainer = createContainer({ name: '@myRemote', exposes: { './remote': ()=> import('./remote'), }, remotes: [...

change: feat

### Describe the bug Hi team. First off, amazing work on this new version of module federation. I am trying to upgrade to 2.0 and added these two packages to...