Skip to content

taxigy/try-redux-saga

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Explain Redux Saga

Redux Saga is a package that uses

to create action pipelines.

With Redux Saga, one action dispatched via classic Redux store can cause a pipeline of actions, performed in synchronized manner using generators. In this example, dispatching a "CLASSIC_REDUX_ACTION" causes a saga to dispatch five more "REDUX_SAGA_ACTION" actions in response. This is the first step to understanding how they work.

To try this example, simply run it:

node ./src/index.js

or, use it in REPL!

node
> store = require('./src/index');

and use store as you could a normal Redux store.

About

A first step to understanding Redux Saga

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published