1.0.6 • Published 10 months ago

@bolideai/mf-shared-state v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

Bolideai Microservice Share State

Provider for passing states between micro-frontends in Module Federation

Installation

npm i @bolideai/mf-shared-state

Usage

In parent application:

import { ShareContextProvider } from '@bolideai/mf-shared-state';

<ShareContextProvider.Provider value={{ key: 12345, time: Date.now() }}>
    ...
</ShareContextProvider.Provider>

In any child application:

import { ShareContextProvider } from '@bolideai/mf-shared-state';

const { key, time } = React.useContext(ShareContextProvider);

Build and update

  1. Install dependencies:
npm install
  1. Make changes
  2. Build:
npx webpack

Author

Dubov V. vitaliy.dubov@searchanise.io

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

2 years ago