Top "Flux" questions

An application design paradigm used as a replacement for MVC, pioneered at Facebook by Jing Chen

Why use Redux over Facebook Flux?

I've read this answer, reducing boilerplate, looked at few GitHub examples and even tried redux a little bit (todo apps). …

javascript reactjs reactjs-flux flux redux
Pretty Printing JSON with React

I'm using ReactJS and part of my app requires pretty printed JSON. I get some JSON like: { "foo": 1, "bar": 2 }, and …

javascript json reactjs flux
How to store Configuration file and read it using React

I am new on react.js I have implemented one component in which I am fetching the data from server …

javascript reactjs configuration webpack flux
How to download fetch response in react as file

Here is the code in actions.js export function exportRecordToExcel(record) { return ({fetch}) => ({ type: EXPORT_RECORD_TO_EXCEL, payload: { …

javascript reactjs flux reactjs-flux
how to cancel/abort ajax request in axios

I use axios for ajax requests and reactJS + flux for render UI. In my app there is third side timeline (…

reactjs flux reactjs-flux es6-promise axios
How can I persist redux state tree on refresh?

The first principal of Redux documentation is: The state of your whole application is stored in an object tree within …

reactjs redux flux
Right way to update state in redux reducers

I'm a newbie in redux and es6 syntax. I make my app with official redux tutorial, and with this example. …

javascript reactjs redux flux
How to dynamically load reducers for code splitting in a Redux application?

I'm going migrate to Redux. My application consists of a lot of parts (pages, components) so I want to create …

javascript flux redux code-splitting
React.js - Communicating between sibling components

I'm new to React, and I'd like to ask a strategy question about how best to accomplish a task where …

javascript reactjs flux
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