xstream
xstream copied to clipboard
An extremely intuitive, small, and fast functional reactive stream library for JavaScript
Hey guys, `[email protected]` moved away from a method chaining API to a more static land style API which means it doesn't gel very well with xstream anymore. Would you be...
I think the documentation must include a note on the diamond flow and how xstream manage it, [something like an explanation of atomic updates of flyd](https://github.com/paldepind/flyd#atomic-updates). As well described by...
I believe it would be good to migrate codebase to prettier.
I'm trying to use xstream streams as a store in a React project and I'm quite happy with it. The only issue I have is with MemoryStreams not working as...
GitHub allows you to toggle HTTPS for its sites, even on custom domains, using Let's Encrypt. [It's literally a click of a button in the settings unless you have explicit...
Hey guys, can you help me? Dist and Minify tool do not have targets for extras, so we cannot use it in JSBin, for example. Is this intentional or you've...
Here is simple example with `take` operator. ```js import xs from 'xstream'; const a = xs.of(1, 2, 3); const b = a.take(1); b.addListener({ next: x => console.log('b', x) }); a.addListener({...
In the readme, in the example under Producer, the `start` property is a function that takes `listener`. Now, this is a bit confusing, because I thought that this `listener` is...
Hello. Using `xstream` on a new project is my only experience with reactive programming so far. Therefore please excuse any obvious problems or mistakes. I encountered a strange problem with...
Doesnt try to atleast approximate where error occured in code say by way of whats in scope or callee although pointing at line of code would be nice. ``` index.js:214...