Releases: itReverie/itR-react-advance
Releases · itReverie/itR-react-advance
Deploying in Production
Improving performace
- PureComponents
 - Subscribing to the portion of the state I am interested in (ShouldComponentUpdate)
 - Adding console.log in ComponentWillUpdate to find out where can I improve performance
 - Using react-addons-perf to identify wasted components
 
Adding an external store. Our own implementation of what redux does.
Merge pull request #5 from itReverie/playingWithState Creating an external store to manage the state.
Adding context, state and store provider.
Merge pull request #4 from itReverie/addingState Adding context and state via a store provider
Adding and async api
Merge pull request #3 from itReverie/asyncAPI Adding an async api
Basic setup back and front end
Basic set up for the back end with:
- node
 - express
 - ejs as a view template
 
Basic set up of the front end with:
- React
 - ReactDOM
 - webpack as a bundler
 - babel as a transpiler