What is the difference between channels (https://github.com/ubolonton/js-csp) and observables (https://rpominov.github.io/kefir/)? Are there specific use cases where using one would make more sense than using the other?
Asked
Active
Viewed 647 times
5
-
1You can push to a channel, but not to an observable. You might want to have a look [at this](https://github.com/kriskowal/gtor/) and [over here](https://github.com/kriskowal/gtor/issues/20) – Bergi Jul 09 '15 at 21:36
-
does this have any implications if i only want to use them as stream of events? – tldr Jul 09 '15 at 21:43
-
Yes, how these events are generated is looking different. Consuming a stream of events works pretty much the same. – Bergi Jul 09 '15 at 21:48