-
Have you used `freactal` with `webpack` hot module replacement and the [`react-hot-loader`](https://github.com/gaearon/react-hot-loader)? Just built a small test project with `freactal` and am not see…
-
Currently, its not easy to write global logic that executes after React has re-rendered. The `componentDidUpdate` lifecycle method works great when your logic is isolated to a component, but I've foun…
-
Hi @divmain,
Thanks for `freactal` I really love how it composes things. I have been playing with it for past few days and wanted your opinion on few things I've encountered. These may very well be…
-
_Ironically_, the VDOM partial render in `freactal` doesn't play nice with [`rapscallion`](https://github.com/FormidableLabs/rapscallion)'s caching technique. A small extension library may be necessar…
-
I was reading the new [article](http://formidable.com/blog/2017/infinite-state-composition-with-freactal/) by @tptee on freactal which puts some emphasis on the breach on contract that for example Red…
-
The testing the state container part of the Readme doesn't work.
```js
const wrapComponentWithState = provideState({
initialState: () => ({
givenName: "Walter",
familyName: "Harriman"
…
-
I did not understand from examples, how can I change the state of stateless component with socket.io
Currently my component's state heavily depends on data arrived from socket.io.
I see that you…
-
For example, effects like this:
```javascript
effects: {
commentVote: (effects, id) => {
fetch(url, {
method: "POST",
headers: {
'Content-Type': 'application/json'
…
-
What's the best way to initialize state to a specific prop value?
Or, how do I access props within initialState?
Obviously, using React's state you would just set the initial state to `this.props.va…
-
I have installed redux-loop 2.2.2 and when I try to import createLoopStore it returns to me an undefined function.
Currently this is what my lib/index.js file shows in the redux-loop node module.,
`…