@norabytes/reactjs-reflexive-store
v1.3.4
Published
A powerful state management library built-on-top of the RxJS library.
Downloads
389
Maintainers
Readme
NoraBytes © 2024
ReactJS ReflexiveStore
Installation
npm install @norabytes/reactjs-reflexive-store
or
yarn add @norabytes/reactjs-reflexive-store
Breaking Changes
v1.3.3
:- The base
ReflexiveStore
lib has been updated to thev2.2.0
which inclused breaking changes, check them on the npm page. - The
useBindToProps
hook has been removed.- Use the
useEffect
hook, eg:useEffect(() => { store.dep1.setValue(dep1); store.dep2.setValue(dep2); }, [dep1, dep2])
- Use the
- The
onComponentMount
method has been removed.- Use the
componentIsMounted$
observable instead.
- Use the
- The base
Usage
TO-DO: Write the Usage
section.
How it works
Please check the ReflexiveStore main npm
page.
Live Examples
You can see and test in real-time some examples by accessing this CodeSandbox link.