Emil Holm Gjørup

Results 23 comments of Emil Holm Gjørup

If it is changed based on some logic outside the component then you can provide the information to the constructor, otherwise you can just do the change inside `run` by...

We hope to have a cleaner api for wrapping imperative code in the future without using classes, but until then: ```typescript class FileContainer extends Component { constructor(private stream: Stream) {...

In my example, it is the 3rd argument, which has to be a number

Sure 😄 I will do my best. There are 2 variations of `performStream` in Hareactive, which is `performStreamLatest` and `performStreamOrdered`. All of them takes a Stream of IOs and return...

> On the other hand, these problems seem to disappear if you regard streams as channels that can produce values at moments in the future. This sounds very much like...

Thank you for showing interest 😄 We do have a small list of goals in the [README#high-level-overview](https://github.com/funkia/turbine#high-level-overview), but nothing besides that at the moment. Let us know if you have...

I imagine that we can use something like [JSDOM](https://github.com/tmpvar/jsdom) to run the component in NodeJS and pre-generate the DOM.

We should be able to detect when DOM is removed with [MutationObserver](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver)

Thank you for your interest! :smile: Benchmarking Turbine against other frameworks would indeed be interesting and is something we intend to do in the future. Currently, we are still working...

So I briefly looked into this. The challenge with removing `Default` in `write_all` is that it has the additional check for the number of bytes written is more than 0....