Top "Reactjs-flux" questions

Flux is the application architecture that Facebook uses for building client-side web applications with React.

How does react-router pass params to other components via props?

Thus far, the extent of my knowledge about how properties are passed from one component to another via parameters is …

javascript reactjs reactjs-flux react-router refluxjs
Where should ajax request be made in Flux app?

I'm creating a react.js application with flux architecture and I am trying figure out where and when a request …

javascript reactjs reactjs-flux
When to use .toJS() with Immutable.js and Flux?

I'm trying to use ImmutableJS with my React / Flux application. My stores are Immutable.Map objects. I'm wondering at which …

reactjs reactjs-flux immutable.js
What could be the downsides of using Redux instead of Flux

I just recently discovered Redux. It all looks good. Are there any downsides, gotcha or compromises of using Redux over …

reactjs redux flux reactjs-flux
Pass object through Link in react router

Is it possible to pass an object via Link component in react-router? Something like: <Link to='home' params={{myObj: …

reactjs reactjs-flux react-router
Webpack-dev-server serves a directory list instead of the app page

I can only see the actual app under /public. The configs in webpack.config.js are below: var path = require(…

node.js reactjs webpack reactjs-flux webpack-dev-server
In Flux architecture, how do you manage Store lifecycle?

I'm reading about Flux but the example Todo app is too simplistic for me to understand some key points. Imagine …

javascript facebook architecture reactjs reactjs-flux
Emitting and handling global events with react

I'm playing around a bit with react to build an "Add to cart button". Here's my code. var ProductPurchase = React.…

javascript reactjs reactjs-flux
Test a React Component function with Jest

Original First of all, I am following the Flux architecture. I have an indicator that shows a number of seconds, …

javascript reactjs reactjs-flux jestjs
Should flux stores, or actions (or both) touch external services?

Should the stores maintain their own state and have the ability to call network and data storage services in doing …

reactjs reactjs-flux