xgrommx / awesome-redux

Awesome list of Redux examples and middlewares

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add redux-tiny-router

Agamennon opened this issue · comments

I just wrote a tiny router for redux called redux-tiny-router it is basically 3 parts, all quite small, one middleware one reducer and some action creators, i was inspired by the cerebral reactive router, to treat the router as just state, there is no wrapper functions no components, just add in the middleware the reducer, and make use of the actions provided to tell the router what to do.

Also it has some nice functionality on the server side for universal apps, it tracks your promises to know if the app is ready to render, and even re-render server side if there is side effects on the first render (component will mount)

Thank you