API

Route based configuration

Suitable for route-based scenarios.

By linking the micro-application to some url rules, the function of automatically loading the corresponding micro-application when the browser url changes.

registerMicroApps(apps, lifeCycles?)

  • Parameters

    • apps - Array<RegistrableApp> - required, registration information for the child application
    • lifeCycles - LifeCycles - optional, global sub app lifecycle hooks
  • Type

    • RegistrableApp

    • LifeCycles

      type Lifecycle = (app: RegistrableApp) => Promise<any>;
      • beforeLoad - Lifecycle | Array<Lifecycle> - optional
      • beforeMount - Lifecycle | Array<Lifecycle> - optional
      • afterMount - Lifecycle | Array<Lifecycle> - optional
      • beforeUnmount - Lifecycle | Array<Lifecycle> - optional
      • afterUnmount - Lifecycle | Array<Lifecycle> - optional
  • Usage

    Configuration information for registered subapplications in the main application.

  • Sample

    import { registerMicroApps } from 'qiankun';
    registerMicroApps(
    [
    {
    name: 'app1',
    entry: '//localhost:8080',
    container: '#container',
    activeRule: '/react',
    props: {
    name: 'kuitos',
    },
    },
    ],
    {
    beforeLoad: (app) => console.log('before load', app.name),
    beforeMount: [(app) => console.log('before mount', app.name)],
    },
    );

start(opts?)

  • Parameters

    • opts - Options optional
  • Type

    • Options

      • prefetch - boolean | 'all' | string[] | (( apps: RegistrableApp[] ) => { criticalAppNames: string[]; minorAppsName: string[] }) - optional, whether to enable prefetch, default is true.

        A configuration of true starts prefetching static resources for other subapplications after the first subapplication mount completes.

        If configured as 'all', the main application start will begin to preload all subapplication static resources.

        If configured as string[], starts prefetching static resources for subapplications after the first subapplication mount completes which be declared in this list.

        If configured as function, the timing of all subapplication static resources will be controlled by yourself.

      • sandbox - boolean | { strictStyleIsolation?: boolean, experimentalStyleIsolation?: boolean } - optional, whether to open the js sandbox, default is true.

        When configured as {strictStyleIsolation: true}, qiankun will convert the container dom of each application to a shadow dom, to ensure that the style of the application will not leak to the global.

        And qiankun offered an experimental way to support css isolation, when experimentalStyleIsolation is set to true, qiankun will limit their scope of influence by add selector constraint, therefore styles of sub-app will like following case:

        // if app name is react16
        .app-main {
        font-size: 14px;
        }
        div[data-qiankun-react16] .app-main {
        font-size: 14px;
        }

        notice: @keyframes, @font-face, @import, @page are not supported (i.e. will not be rewritten)

      • singular - boolean | ((app: RegistrableApp<any>) => Promise<boolean>); - Optional, whether it is a singleton scenario, singleton means just rendered one micro app at one time. default is true.

      • fetch - Function - optional

      • getPublicPath - (entry: Entry) => string - optional,The parameter is the entry value of the micro application.

      • getTemplate - (tpl: string) => string - optional

      • excludeAssetFilter - (assetUrl: string) => boolean - optional,some special dynamic loaded micro app resources should not be handled by qiankun hijacking

  • Usage

    Start qiankun.

  • Sample

    import { start } from 'qiankun';
    start();
  • Parameters

    • appLink - string - required
  • Usage

    Sets the child application that enters by default after the main application starts.

  • Sample

    import { setDefaultMountApp } from 'qiankun';
    setDefaultMountApp('/homeApp');

runAfterFirstMounted(effect)

  • Parameters

    • effect - () => void - required
  • Usage

    Methods that need to be called after the first subapplication mount, such as turning on some monitoring or buried scripts.

  • Sample

    import { runAfterFirstMounted } from 'qiankun';
    runAfterFirstMounted(() => startMonitor());

Manually load micro applications

It is suitable for scenarios where a micro application needs to be manually loaded / unloaded.

Usually in this scenario, the micro application is a business component that can run independently without routing. Micro applications should not be split too fine, it is recommended to split according to the business domain. Functional units with close business associations should be made into one micro-application, and conversely, those with less close association can be considered to be split into multiple micro-applications. A criterion for judging whether the business is closely related: Look at whether this micro application has frequent communication needs with other micro applications. If it is possible to show that these two micro-applications are serving the same business scenario, it may be more appropriate to merge them into one micro-application.

loadMicroApp(app, configuration?)

  • Parameters

    • app - LoadableApp - Required, basic information of micro application

      • name - string - Required, the name of the micro application must be unique among the micro applications.
      • entry - string | { scripts?: string[]; styles?: string[]; html?: string } - Required, The entry of the micro application(The detailed description is the same as above).
      • container - string | HTMLElement - Required, selector or Element instance of the container node of the micro application. Such as container: '#root' or container: document.querySelector('#root').
      • props - object - Optional, the data that needs to be passed to the micro-application during initialization.
    • configuration - Configuration - Optional, configuration information of the micro application

      • sandbox - boolean | { strictStyleIsolation?: boolean, experimentalStyleIsolation?: boolean } - optional, whether to open the js sandbox, default is true.

        When configured as {strictStyleIsolation: true}, qiankun will convert the container dom of each application to a shadow dom, to ensure that the style of the application will not leak to the global.

        And qiankun offered an experimental way to support css isolation, when experimentalStyleIsolation is set to true, qiankun will limit their scope of influence by add selector constraint, thereforce styles of sub-app will like following case:

        // if app name is react16
        .app-main {
        font-size: 14px;
        }
        div[data-qiankun-react16] .app-main {
        font-size: 14px;
        }

        notice: @keyframes, @font-face, @import, @page are not supported (i.e. will not be rewritten)

      • singular - boolean | ((app: RegistrableApp<any>) => Promise<boolean>); - Optional, whether it is a singleton scenario, singleton means just rendered one micro app at one time. Default is false.

      • fetch - Function - Optional, custom fetch method.

      • getPublicPath - (url: string) => string - Optional,The parameter is the entry value of the micro application.

      • getTemplate - (tpl: string) => string - Optional

      • excludeAssetFilter - (assetUrl: string) => boolean - optional,some special dynamic loaded micro app resources should not be handled by qiankun hijacking

  • Return - MicroApp - Micro application examples

    • mount(): Promise<null>;
    • unmount(): Promise<null>;
    • update(customProps: object): Promise<any>;
    • getStatus(): | "NOT_LOADED" | "LOADING_SOURCE_CODE" | "NOT_BOOTSTRAPPED" | "BOOTSTRAPPING" | "NOT_MOUNTED" | "MOUNTING" | "MOUNTED" | "UPDATING" | "UNMOUNTING" | "UNLOADING" | "SKIP_BECAUSE_BROKEN" | "LOAD_ERROR";
    • loadPromise: Promise<null>;
    • bootstrapPromise: Promise<null>;
    • mountPromise: Promise<null>;
    • unmountPromise: Promise<null>;
  • Usage

    Load a micro application manually.

    If you need to support the main application to manually update the micro application, you need to export an update hook for the micro application entry:

    export async function mount(props) {
    renderApp(props);
    }
    // Added update hook to allow the main application to manually update the micro application
    export async function update(props) {
    renderPatch(props);
    }
  • Sample

    import { loadMicroApp } from 'qiankun';
    import React from 'react';
    class App extends React.Component {
    containerRef = React.createRef();
    microApp = null;
    componentDidMount() {
    this.microApp = loadMicroApp({
    name: 'app1',
    entry: '//localhost:1234',
    container: this.containerRef.current,
    props: { brand: 'qiankun' },
    });
    }
    componentWillUnmount() {
    this.microApp.unmount();
    }
    componentDidUpdate() {
    this.microApp.update({ name: 'kuitos' });
    }
    render() {
    return <div ref={this.containerRef}></div>;
    }
    }

prefetchApps(apps, importEntryOpts?)

  • Parameters

    • apps - AppMetadata[] - Required - list of preloaded apps
    • importEntryOpts - Optional - Load configuration
  • Type

    • AppMetadata
      • name - string - Required - Application name
      • entry - string | { scripts?: string[]; styles?: string[]; html?: string } - Required,The entry address of the microapp
  • Usage

    Manually preload the specified micro application static resources. Only needed to manually load micro-application scenarios, you can directly configure the prefetch attribute based on the route automatic activation scenario.

  • Sample

    import { prefetchApps } from 'qiankun';
    prefetchApps([
    { name: 'app1', entry: '//localhost:7001' },
    { name: 'app2', entry: '//localhost:7002' },
    ]);

addErrorHandler/removeErrorHandler

addGlobalUncaughtErrorHandler(handler)

  • Parameters

    • handler - (...args: any[]) => void - Required
  • Usage

    Add the global uncaught error hander.

  • Sample

    import { addGlobalUncaughtErrorHandler } from 'qiankun';
    addGlobalUncaughtErrorHandler((event) => console.log(event));

removeGlobalUncaughtErrorHandler(handler)

  • Parameters

    • handler - (...args: any[]) => void - Required
  • Usage

    Remove the global uncaught error hander.

  • Sample

    import { removeGlobalUncaughtErrorHandler } from 'qiankun';
    removeGlobalUncaughtErrorHandler(handler);

initGlobalState(state)

  • Parameters

    • state - Record<string, any> - Required
  • Usage

    init global state, and return actions for communication. It is recommended to use in master, and slave get actions through props.

  • Return

    • MicroAppStateActions

      • onGlobalStateChange: (callback: OnGlobalStateChangeCallback, fireImmediately?: boolean) => void - Listen the global status in the current application: when state changes will trigger callback; fireImmediately = true, will trigger callback immediately when use this method.

      • setGlobalState: (state: Record<string, any>) => boolean - Set global state by first layer props, it can just modify first layer props what has defined.

      • offGlobalStateChange: () => boolean - Remove Listener in this app, will default trigger when app unmount.

  • Sample

    Master:

    import { initGlobalState, MicroAppStateActions } from 'qiankun';
    // Initialize state
    const actions: MicroAppStateActions = initGlobalState(state);
    actions.onGlobalStateChange((state, prev) => {
    // state: new state; prev old state
    console.log(state, prev);
    });
    actions.setGlobalState(state);
    actions.offGlobalStateChange();

    Slave:

    // get actions from mount
    export function mount(props) {
    props.onGlobalStateChange((state, prev) => {
    // state: new state; prev old state
    console.log(state, prev);
    });
    props.setGlobalState(state);
    // It will trigger when slave umount, not necessary to use in non special cases.
    props.offGlobalStateChange();
    // ...
    }