0.0.6 • Published 8 years ago

rijs.reactive v0.0.6

Weekly downloads
8
License
pemrouz.mit-licen...
Repository
github
Last release
8 years ago

Ripple | Reactive

Coverage Status Build Status

Reacts to changes in data resources.

Traditionally in JS Frameworks, you will make a change, then run a different command to signal an update:

ripple('data').push(value)
ripple('data').emit('change')

This module makes the second line redundant. More philosophically, as a reactive design pattern, listeners (e.g. views updating) should update themselves as an epiphenomenon of data changing rather than an application developer directly instructing them too.

ripple('data').push(value)  // triggers ripple('data').emit('change')

Uses Object.observe in browsers that support it or polling in browsers that don't.

0.0.6

8 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago