Created
September 10, 2019 12:17
-
-
Save andyshora/9d6b9785d6de30810f96992a64b4065e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Recommended Redux Video Tutorial: | |
https://egghead.io/lessons/react-redux-the-single-immutable-state-tree | |
Organising Redux | |
https://medium.com/@scbarrus/the-ducks-file-structure-for-redux-d63c41b7035c | |
Selector library: | |
https://github.com/reduxjs/reselect | |
How to not mutate state within reducers: | |
https://www.npmjs.com/package/immutability-helper | |
Organising Components | |
I recommend creating the following folders: | |
``` | |
src/components/elements (atoms) | |
src/components/modules (molecules) | |
src/components/views (organisms) | |
Actual component path: | |
src/components/elements/ComponentName/ComponentName.js | |
src/components/elements/ComponentName/index.js (exports above) | |
``` | |
http://bradfrost.com/blog/post/atomic-web-design/ | |
Gamma UI: | |
Send me your github usernames and I'll give you early access | |
Doing intensive stuff on seperate threads in the browser: | |
https://codeburst.io/an-introduction-to-service-workers-in-javascript-27d6376460c2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment