https://github.com/mixelpixel/redux-basics
Dan Abramov's tutorial web page and videos
https://github.com/mixelpixel/redux-basics
Last synced: 11 months ago
JSON representation
Dan Abramov's tutorial web page and videos
- Host: GitHub
- URL: https://github.com/mixelpixel/redux-basics
- Owner: mixelpixel
- Created: 2017-07-28T01:57:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-31T15:20:39.000Z (almost 9 years ago)
- Last Synced: 2024-12-28T18:55:31.453Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://redux.js.org/
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# [Redux Basics Tutorial](http://redux.js.org/docs/basics/)
This project was created July 27, 2017 to supplement a [Lambda University (CS1) lecture](https://youtu.be/wJatXrRg8rw) introducing the Redux framework in conjunction with React.
I am following Dan Abramov's excellent (and FREE!) tutorial web pages:
1. http://redux.js.org/docs/basics/
2. http://redux.js.org/docs/basics/ExampleTodoList.html
- To use the Redux dev tool with the chrome plugin, include this with the Provider state: `window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()`
... and his video series:
3. https://egghead.io/courses/getting-started-with-redux
- To use the "expect" keyword for testing, include in the html `` tag: ``
In particular I am using macOS10.12.5 along with:
```console
$ create-react-app --version
1.3.1
$ npm -v
5.1.0
```