An open API service indexing awesome lists of open source software.

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

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
```