Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kuy/redux-saga-examples
Yet another example repository for redux-saga.
https://github.com/kuy/redux-saga-examples
example react redux redux-saga
Last synced: 2 months ago
JSON representation
Yet another example repository for redux-saga.
- Host: GitHub
- URL: https://github.com/kuy/redux-saga-examples
- Owner: kuy
- Created: 2016-05-11T06:21:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-07T14:53:29.000Z (almost 4 years ago)
- Last Synced: 2024-06-22T19:42:21.609Z (5 months ago)
- Topics: example, react, redux, redux-saga
- Language: JavaScript
- Size: 57.6 KB
- Stars: 404
- Watchers: 6
- Forks: 52
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redux-saga-examples
Yet another example repository for redux-saga.
## Demo
+ [Autocomplete](http://kuy.github.io/redux-saga-examples/autocomplete.html)
+ Lazy request dispatching with cancellation
+ [Throttle](http://kuy.github.io/redux-saga-examples/throttle.html)
+ Execution queue with throttling concurrency
+ [Start-Stop](http://kuy.github.io/redux-saga-examples/startstop.html)
+ Chained cancellation with [Page Visibility API](https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API)
+ [Microblog](http://kuy.github.io/redux-saga-examples/microblog.html)
+ Integration with [Firebase](https://firebase.google.com/): Auth and Realtime Database
+ [Reject](http://kuy.github.io/redux-saga-examples/reject.html)
+ In-place editing and handle rejected XHR response
+ [TakeX](http://kuy.github.io/redux-saga-examples/takex.html)
+ Custom effect 'takex' accepts RegExp pattern of action types
+ [Form](http://kuy.github.io/redux-saga-examples/form.html)
+ Integration with [redux-form](https://github.com/erikras/redux-form): Submit from redux-saga (based on [this solution](https://github.com/yelouafi/redux-saga/issues/161))
+ [Wizard](http://kuy.github.io/redux-saga-examples/wizard.html)
+ Wizard app with forward/backward transition and error handling## Have a problem?
Please mention to [@kuy](https://twitter.com/kuy) on Twitter or [open an issue](https://github.com/kuy/redux-saga-examples/issues) on Github.
## Getting Started
```
npm install
npm start
```Open `http://localhost:8080` in your browser.
## Author
Yuki Kodama / [@kuy](https://twitter.com/kuy)