-
It would be great if `toEmit` (i.e. `createTestHelpers(Kefir).watch`) would allow asserting that an observable emits, also asynchronously. For example:
```js
const seq = Kefir.sequentially(100, [1…
-
Like `fromNodeCallback` and `fromPromise`.
It's nice to lift node streams into kefir streams. When a stream is in object mode, it's basically a kefir observable anyway with data, error, and end even…
-
I'm moving my project from RxJS to Kefir and got "problem" with "Rx.Subject equivalent"
I found #165 . and #276 , but my situation is a bit different: I need multiple subscribers for one stream.
Nor…
-
Hi, I am looking for a way to avoid the activation of an observable created from a previous activation of flatMapLatest.
```js
let pool = Kefir.pool();
let foo = pool.toProperty();
let bar = foo…
-
I'm using flatMap and I had a chunk of code like...
```
.flatMap( function(topic) {
Kefir.combine([Kefir.constant(topic), tree.getTopicValueStream(topic)]);
});
```
Which was causing this error …
-
Let's compare error handling in RxJS and Kefir:
#### RxJS. Example 1
```js
import {Observable as O} from "rxjs"
O.from([1, 2, 3]).map(() => {
return x.y
}).subscribe(
(x) => console.l…
-
I'm not sure if this is a bug, but I found this strange behavior of signals getting lost on some cases.
```
const pool = kefir.pool();
const prop = pool.toProperty(() => 0);
const later = kefir.…
-
At first I thought this was a bug, then an inconsistency, now I realize it's not perfectly clear of this behavior:
```
var pool = Kefir.pool();
var prop = pool.toProperty();
pool.plug(Kefir.constant(…
-
Creating this issue to investigate how we could make Kefir compatible with the [Fantasy Land Specification](https://github.com/fantasyland/fantasy-land).
I think of two possibilities: add Fantasy Lan…
-
Seems like Flyd beats Kefir, but wondering how it measures up against Most.js in performance, mem and boot time. Ever seen a benchmark?
Are there some primary reasons to use one of the other? Tnx.