@bolideai/mf-shared-state
v1.0.6
Published
Library for share state between microfrontends
Downloads
432
Readme
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
- Install dependencies:
npm install
- Make changes
- Build:
npx webpack
Author
Dubov V. [email protected]