Skip to content

Releases: itReverie/itR-react-advance

Deploying in Production

03 Nov 17:09
42b1ba0

Choose a tag to compare

Improving deployment production by:

  • Separating vendor files
  • Minifying bundles
  • Building different configurations of Node for server and webpack with the help of Babel.
  • Running multiple instances of node per processor

Improving performace

02 Nov 18:37
56591ac

Choose a tag to compare

  • 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.

01 Nov 19:02
608e646

Choose a tag to compare

Merge pull request #5 from itReverie/playingWithState

Creating an external store to manage the state.

Adding context, state and store provider.

31 Oct 18:32
6e797f4

Choose a tag to compare

Merge pull request #4 from itReverie/addingState

Adding context and state via a store provider

Adding and async api

30 Oct 22:03
5769b58

Choose a tag to compare

Merge pull request #3 from itReverie/asyncAPI

Adding an async api

Basic setup back and front end

27 Oct 20:36
67ef6e8

Choose a tag to compare

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