-
I expected to be able to run elm code in Node. It _seems_ this isn't possible; would be awesome if you could document the answer prominently.
-
Juanpe,
I'm currently considering options to simplify the application state management in a large app. So far the whole app has been coded imperatively and it gets somewhat tricky because one requ…
-
Inspired by this little [tweetstorm](https://twitter.com/dan_abramov/status/710642981016100864).
## Problem: Side Effects and Composition
We discussed effects in Redux for ages here but this is the f…
-
#### Do you want to request a _feature_ or report a _bug_?
Discussion.
#### What's the current behavior?
Just opening this up for discussion, since it's something that I think Slate hasn't re…
-
The following function would be very valuable and it would be best if the implementation were native:
``` elm
update: Int -> (a -> a) -> Array a -> Array a
```
This function would be analogous to `…
-
There is a rising demand to move towards modularization of *_marked *_ and separate different components in different files(grammar-rules, lexers, parsers and renderers). This though not have been men…
-
I just started using redux-loop, been going quite good so far. I started out by using `Cmd.run` and declaring the functions that contain the side-effects in my reducers. However I soon felt that I wou…
-
Recently `effects` and `reducers` got merged into `actions`. Now the way to set the state is by just retuning an object.
What about exposing a `actions.setState` function which can be called from e…
-
Redux is awesome!
I am wondering if this is a good idea: use Redux at the top, with `store.subscribe` to listen to `store.dispatch`, then aggregate result with `store.getState()` and finally call `Re…
-
[Nuklear](https://github.com/snuk182/nuklear-rust) is an immediate mode GUI (IMGUI) library.
IMGUI is a non-retained mode of graphical interface programming, the UI is just a function of the current …