ObservableStore
ObservableStore
is a synchronous in-memory store for a single value,
that you can subscribe to updates on.
const store = initStatestore store // "saw value: 5"store // "saw value: true"store // "saw value: { hello: 'world' }" console // "world"
streams
Each ObservableStore
can be turned into an ObservableStoreStream
.
An ObservableStoreStream
is a duplex stream that you can pipe new values into it or
pipe its updated values out of it.
Special behavior: Doesnt buffer outgoing updates, writes latest state to dest on pipe.
const pipe = const asStream = const storeOne = initStateconst storeTwo =
Changelog
3.0.0
ObservableStore
are no longer streams. You can create streams via asStream
.