0.1.2 • Published 7 years ago

@10ark/react-template v0.1.2

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

react-template

Template project of all components, patterns, conventions, standards that we adopt, create or use.

Process

  1. create-react-app
  2. npm install --save redux
  3. npm install --save react-redux
  4. npm install --save-dev redux-devtools
  5. npm install --save-dev react-devtools

Stack

react - client side VC framework, V in the form of Components and C in the form of Router
redux - client side M framework, M in the form or single state tree that may only be mutated by dispatching actions
immutable - immutable data library

Roadmap

  1. We will start off with the basic structure for a react / redux / immutable project and refactor it by feature when it starts to grow
  2. Add propTypes to Components
  3. Add Routing for Components
  4. Look at using redux-actions
  5. Bring TypeScript into the stack
  6. Bring Sagas in to replace Thunk

FAQ

  1. What is the difference between import statements with and without curly braces {} ? The best answer is found in the Mozilla documentation.