https://github.com/mauricius/redux-memory-game
Redux implementation of a Memory Game
https://github.com/mauricius/redux-memory-game
demo game react redux
Last synced: about 1 year ago
JSON representation
Redux implementation of a Memory Game
- Host: GitHub
- URL: https://github.com/mauricius/redux-memory-game
- Owner: mauricius
- License: mit
- Created: 2015-11-29T14:38:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-28T21:01:10.000Z (over 8 years ago)
- Last Synced: 2025-03-26T09:01:49.693Z (over 1 year ago)
- Topics: demo, game, react, redux
- Language: JavaScript
- Homepage: http://mauricius.github.io/redux-memory-game/
- Size: 699 KB
- Stars: 28
- Watchers: 4
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Redux Memory Game
Redux implementation of a memory game.
## Redux
[Redux](https://github.com/rackt/redux) is a predictable state container for JavaScript apps, written by [Dan Abramov](https://twitter.com/dan_abramov)
It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. On top of that, it provides a great developer experience, such as [live code editing combined with a time traveling debugger](https://github.com/gaearon/redux-devtools).
### Influences
The game is heavily inspired by the [Redux examples](https://github.com/rackt/redux/tree/master/examples) and it's just a proof of concept on how Redux works.
### Run the game
```
git clone https://github.com/mauricius/redux-memory-game .
npm install
npm start
```
### Working Demo
[demo](http://mauricius.github.io/redux-memory-game)
### Thanks
* [Dan Abramov](https://github.com/rackt/redux) for his amazing work with Redux and the React ecosystem in general;
* [EggHead Redux Series](https://egghead.io/lessons/javascript-redux-the-single-immutable-state-tree?series=getting-started-with-redux) for blowing my mind;
* [React](https://github.com/facebook/react) for the strong innovation.
### License
MIT