Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 694 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 694 Bytes

A React & Redux web application written in ES6

Learning the benefits of FLUX architectural pattern and functional programming. In this repo you can find an example of a very simple interactive application written with Redux and ReactJs.

The Stack

  • Webpack 1.13
  • Babel 6.*
  • Redux 3.5.2
  • ReactJS 15.0.2
  • React/Router 2.4.0

The App

To run the app:

  • development mode npm run start;
  • production mode npm run build;

Testing

In the repo there are some examples on how to test react components, reducers, actions, thunks and store.

  • Testing framework: Mocha;
  • Assertion library: Expect;
  • Helper library: Enzyme;

Run npm run test to perform unit tests.