A Great Class to Extend! It has built in support to make reactive any/all class properties and their nested leaves.
 
Go to file
David Kebler e0c674f3e5 fixed bug in isRx and this.set (needed to check for undefined)
added $get,$set,$del  any object for direct access, defaults to 'this'
finished rxRemove
2020-06-15 10:46:57 -07:00
examples fixed bug in isRx and this.set (needed to check for undefined) 2020-06-15 10:46:57 -07:00
src fixed bug in isRx and this.set (needed to check for undefined) 2020-06-15 10:46:57 -07:00
.eslintrc.js A working class, only missing the tested hook and operator support 2020-06-07 21:56:54 -07:00
.gitignore A working class, only missing the tested hook and operator support 2020-06-07 21:56:54 -07:00
.npmignore A working class, only missing the tested hook and operator support 2020-06-07 21:56:54 -07:00
nodemon.json A working class, only missing the tested hook and operator support 2020-06-07 21:56:54 -07:00
package.json 0.1.1 2020-06-09 10:32:39 -07:00
readme.md improve several aspects 2020-06-08 19:18:26 -07:00

readme.md

uCOMmandIt Reactive Class

A Great Class to Extend! It has built in support to make reactive any/all class properties and their nested leaves.

Why?

To have reactivity similar to vue and react but in any backend object? This allow a backend app to maintain app settings and allow "clients" to get updated values when the app changes state. Essentially will create a 'mini' state event bus.

Features

Will both emit and allow subscriptions to any property 'path' that has been made reactive.

Allows custom registration of unlimited state change event hooks.

Allows additional rxjs operators for the pipe the observer for each property.

See Examples folder