Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  • Recommended Text Editor - Sublime Text offers a free software to edit any language.  It is built for PC and Mac, and runs common functions like autocomplete, and tracks all variable names.  The editor is also color coded, making differentiations between data types, functions, and objects easy to identify.

Not sure if this goes here - 

  • React/Redux Framework - http://redux.js.org/docs/basics/UsageWithReact.html
    • React and Redux have NO relation with one another
    • Redux just works extremely well with React and Deku because it allows you to describe UI as a function of state
    • Benefit of Redux: attempts to make state mutations predictable by imposing certain restriction on how and when updates can happen. 
    • Three principle of Redux: State of the whole application is stored in an object tree with ONE single store State is READ-ONLY – only way state emits action is if an object describes what happens next Changes are made with pure functions AKA reducers