Juraj Kirchheim
Juraj Kirchheim
This opens potential for simplification in coconut.ui.
Consider using [something more lightweight](https://gist.github.com/back2dos/e9c629b649ae5193f814130d80b68601) for `mapAsync` / `combineAsync` and the like.
While benchmarking vs. MobX, I've noticed tink_state taxes the GC quite a bit more. Haven't profiled it yet, but two things seem to stand out as relatively obvious: 1. `Invalidator`...
Currently, the computation always finishes, even when there are no observers left.
To accompany https://github.com/haxetink/tink_core/issues/161, - make it so that `bind` and `value` are available on all `ObservableObject` implementors at runtime (and for `StateObject` there should be a `setter` for `value`). -...
Following #30 parts of the documentation are outdated.
Currently, there is nothing in place to ensure an async function ever completes. Simplest example: ``` haxe @async function foo() { } ``` This will generate something along the lines...
Some option is needed to allow e.g. self signed certificates in `fetch` or at least in `NodeClient`, otherwise it's pretty hard to do HTTPS with localhost.
Selecting a client for a URL is quite a daunting task, and the distinction provides little value. For containers, the existence of secure versions makes quite a lot of sense,...
This came up in #18. To my understanding, this could be implemented as a function of type `OutgoingResponse->OutgoingResponse`. If the argument already has a `Content-Length` it would be returned as...