An open API service indexing awesome lists of open source software.

https://github.com/xop/flux-flux

Flux data flow example
https://github.com/xop/flux-flux

Last synced: 25 days ago
JSON representation

Flux data flow example

Awesome Lists containing this project

README

          

# flux-flux

> Flux data flow example

## Tech stack

Application is build with [Webpack](https://webpack.github.io/) as the main bundle tool.
CSS building is integrated in bundle process and is handled by [PostCSS](https://github.com/postcss/postcss).

There are two modes of processing - development (devServer) and production (CSS nano, HTML minifying).

## Install

```
npm install
```

## Commands

**Build**
```
npm run build
```

**Dev mode**
```
npm run dev
```

## Credits

Inspired with [this article by Andrew Ray](http://blog.andrewray.me/flux-for-stupid-people/)

Helpful sources of knowledge:
- [https://facebook.github.io/flux/docs/todo-list.html](https://facebook.github.io/flux/docs/todo-list.html)
- [http://tylermcginnis.com/reactjs-tutorial-pt-3-architecting-react-js-apps-with-flux/](http://tylermcginnis.com/reactjs-tutorial-pt-3-architecting-react-js-apps-with-flux/)
- [https://scotch.io/tutorials/creating-a-simple-shopping-cart-with-react-js-and-flux](https://scotch.io/tutorials/creating-a-simple-shopping-cart-with-react-js-and-flux)
- [http://survivejs.com/webpack_react/react_and_flux/](http://survivejs.com/webpack_react/react_and_flux/)
- [http://jonathancreamer.com/what-the-flux/](http://jonathancreamer.com/what-the-flux/)
- [http://ryanclark.me/getting-started-with-flux/](http://ryanclark.me/getting-started-with-flux/)
- [http://reactjsnews.com/getting-started-with-flux/](http://reactjsnews.com/getting-started-with-flux/)

## [License (MIT)](LICENSE)