0.15.0 • Published 4 months ago

@module-federation/retry-plugin v0.15.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

@module-federation/retry-plugin

A plugin for retrying failed module requests.

Usage

// ./src/runtime-plugin/retry.ts
import { RetryPlugin } from '@module-federation/retry-plugin';
const retryPlugin = () => RetryPlugin({
    fetch: {
        url: 'http://localhost:2008/not-exist-mf-manifest.json',
        fallback: () => 'http://localhost:2001/mf-manifest.json',
    },
    script: {
        // url: 'http://localhost:2008/not-exist-mf-manifest.json',
        url: 'http://localhost:2001/static/js/async/src_App_tsx.js',
        customCreateScript: (url: string, attrs: Record<string, string>) => {
            let script = document.createElement('script');
            script.src = `http://localhost:2011/static/js/async/src_App_tsx.js`;
            script.setAttribute('loader-hoos', 'isTrue');
            script.setAttribute('crossorigin', 'anonymous');
            return script;
        },
    }
})

export default defineConfig({
  tools: {
    rspack: (config, { appendPlugins }) => {
      appendPlugins([
        new ModuleFederationPlugin({
          ...,
+         runtimePlugins: [
+            path.join(__dirname, './src/runtime-plugin/retry.ts'),
+         ],
        }),
      ]);
    },
  },
  plugins: [pluginReact()],
});

Documentation

See https://module-federation.io/plugin/plugins/retry-plugin.html for details.

License

@module-federation/retry-plugin is MIT licensed.

0.8.9

9 months ago

0.8.8

10 months ago

0.8.5

10 months ago

0.8.4

10 months ago

0.8.7

10 months ago

0.8.6

10 months ago

0.7.2

11 months ago

0.7.1

12 months ago

0.7.3

11 months ago

0.7.0

12 months ago

0.10.0

8 months ago

0.8.1

11 months ago

0.8.0

11 months ago

0.8.3

10 months ago

0.8.2

11 months ago

0.7.6

11 months ago

0.7.5

11 months ago

0.7.7

11 months ago

0.13.0

6 months ago

0.13.1

6 months ago

0.14.0

5 months ago

0.14.1

5 months ago

0.14.2

5 months ago

0.14.3

5 months ago

0.11.0

7 months ago

0.11.1

7 months ago

0.11.2

7 months ago

0.11.3

7 months ago

0.11.4

7 months ago

0.9.0

8 months ago

0.9.1

8 months ago

0.12.0

6 months ago

0.8.12

8 months ago

0.8.11

8 months ago

0.8.10

9 months ago

0.15.0

5 months ago

0.6.16

12 months ago

0.6.15

12 months ago

0.6.14

12 months ago

0.6.13

12 months ago

0.6.12

12 months ago

0.6.11

1 year ago

0.6.7

1 year ago

0.6.9

1 year ago

0.6.8

1 year ago

0.6.10

1 year ago

0.6.6

1 year ago

0.6.5

1 year ago

0.6.4

1 year ago

0.6.3

1 year ago

0.6.2

1 year ago

0.6.1

1 year ago

0.6.0

1 year ago