Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 507 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 507 Bytes

React + Reflux Demo

This application is about bookmarks listing.

The Reflux way is pretty simple:

  1. Store is used for listen Action and fetch the data back from server
  2. When Action occurs, Store is changed (and the state of a component is updated), then Component is re-rendered

To run it, simply:

$ git clone [email protected]:abruzzi/react-reflux-demo.git
$ npm install
$ gulp
$ bundle install
$ ruby app.rb

and then launch the browser to view the bookmark list.