@10ark/react-template
v0.1.2
Published
Template project of all components, patterns, conventions, standards that we adopt, create or use.
Downloads
9
Readme
react-template
Template project of all components, patterns, conventions, standards that we adopt, create or use.
Process
- create-react-app
- npm install --save redux
- npm install --save react-redux
- npm install --save-dev redux-devtools
- 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
- We will start off with the basic structure for a react / redux / immutable project and refactor it by feature when it starts to grow
- Add propTypes to Components
- Add Routing for Components
- Look at using redux-actions
- Bring TypeScript into the stack
- Bring Sagas in to replace Thunk
FAQ
- What is the difference between import statements with and without curly braces {} ? The best answer is found in the Mozilla documentation.