All Projects → ioof-holdings → Redux Dynostore

ioof-holdings / Redux Dynostore

Licence: bsd-3-clause
These libraries provide tools for building dynamic Redux stores.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Redux Dynostore

Starter Lapis
Cutting edge starter kit
Stars: ✭ 72 (-41.46%)
Mutual labels:  redux-saga
Typescript Nextjs Redux Material Ui Example
next.js v9, typescript v3.7, redux, material-ui v4, react-hooks, redux-saga, SSR
Stars: ✭ 93 (-24.39%)
Mutual labels:  redux-saga
Interview Problem Summary
🎤 Prepare for the interviews and sum up the most popular interview problems for front-end(HTML/CSS/Javascript), Web development, full-stack. Also did some typical coding practice questions, such as UI caculator
Stars: ✭ 112 (-8.94%)
Mutual labels:  redux-saga
Saga Duck
extensible and composable duck for redux-saga
Stars: ✭ 81 (-34.15%)
Mutual labels:  redux-saga
Github User Search
Browse GitHub users with React
Stars: ✭ 87 (-29.27%)
Mutual labels:  redux-saga
Ts React Boilerplate
Universal React App with Redux 4, Typescript 3, and Webpack 4
Stars: ✭ 104 (-15.45%)
Mutual labels:  redux-saga
Bank
🏦 Full Stack Web Application similar to financial software that is used in banking institutions | React.js and Node.js
Stars: ✭ 1,158 (+841.46%)
Mutual labels:  redux-saga
Alpha
Craft your own web-based chatbot
Stars: ✭ 113 (-8.13%)
Mutual labels:  redux-saga
Redux Saga Devtools Extension
Chrome extension for Redux-Saga Devtools
Stars: ✭ 90 (-26.83%)
Mutual labels:  redux-saga
Battle City
🎮 Battle city remake built with react.
Stars: ✭ 1,543 (+1154.47%)
Mutual labels:  redux-saga
Fullstack Shopping Cart
MERN stack shopping cart, written in TypeScript
Stars: ✭ 82 (-33.33%)
Mutual labels:  redux-saga
Tkframework
react + relay + redux + saga + graphql + webpack
Stars: ✭ 83 (-32.52%)
Mutual labels:  redux-saga
React Login
A client side implementation of authentication using react.js for my blog on medium. This is the second part of my previous blog on how to implement scalable node.js server.
Stars: ✭ 105 (-14.63%)
Mutual labels:  redux-saga
React Hipstaplate
A ReactJS full-stack boilerplate based on typescript with ssr, custom apollo-server and huge stack of modern utilities which will help you to start your own project
Stars: ✭ 74 (-39.84%)
Mutual labels:  redux-saga
Elixir Cowboy React Spa
Example application that shows how to use Cowboy 2.0 in conjunction with React and Redux to create data driven Single Page Applications
Stars: ✭ 112 (-8.94%)
Mutual labels:  redux-saga
React Redux Hooks Starter
React-redux boilerplate using hooks 🎣
Stars: ✭ 69 (-43.9%)
Mutual labels:  redux-saga
Molecule
⚛️ – :atom: – ⚛️ Boilerplate for cross platform web/native react apps with electron.
Stars: ✭ 95 (-22.76%)
Mutual labels:  redux-saga
Reeakt
A modern React boilerplate to awesome web applications
Stars: ✭ 116 (-5.69%)
Mutual labels:  redux-saga
Enegrecer Web
Verdade Seja Dita!
Stars: ✭ 113 (-8.13%)
Mutual labels:  redux-saga
What The Splash
Tutorial for building an unsplash image gallery with redux saga :atom:
Stars: ✭ 107 (-13.01%)
Mutual labels:  redux-saga

redux-dynostore

Deprecated

This library is no longer being actively maintained.

IOOF has been slowly moving away from the ubiquitous use of Redux as a core piece of our micro-frontend architecture and have been actively replacing the usage of this library with more standard React and JavaScript patterns. Due to some technical constraints, we've also been unable to upgrade to the latest version of the library ourselves for quite some time now, further fuelling our desire to move away from this solution.

At this time, we will be ceasing all maintenance tasks and we recommend that you consider using an alternative library:

If you want to continue using this library, we encourage you to fork this repo and take over maintenance yourself.


build status npm version npm downloads License: BSD-3-Clause

All Contributors PRs Welcome

Watch on GitHub Star on GitHub

These libraries provide tools for building dynamic Redux stores.

Usage

Make a dynostore, including the dynamic enhancers you need:

import dynostore, { dynamicReducers }  from '@redux-dynostore/core'
import { dynamicSagas } from '@redux-dynostore/redux-saga'

const sagaMiddleware = createSagaMiddleware()

const store = createStore(reducer, compose(
  applyMiddleware(sagaMiddleware),
  dynostore(
    dynamicReducers(),
    dynamicSagas(sagaMiddleware)
  )
))

Make a dynamic component:

import dynamic from '@redux-dynostore/react-redux'
import subspaced from '@redux-dynostore/react-redux-subspace'
import { attachReducer } from '@redux-dynostore/redux-subspace'
import runSaga from '@redux-dynostore/redux-subspace-saga'

export default dynamic('identifier', subspaced(), attachReducer(myReducer), runSaga(mySaga))(MyComponent)

Packages

FAQ

Whats with the name?

It's about adding dynamic features to redux stores… And it sounds like dinosaur. Raaaawwwwwrrrrrr!

Media

Contributors

Thanks goes to these wonderful people (emojis):


Michael Peyper

💬 🐛 💻 📖 💡 🤔 🚇 👀 📦 📢 ⚠️ 🔧

Jonathan Peyper

💬 🐛 💻 🤔 👀 ⚠️

Greg Miller

💡

Ethorsen

💻 📖 ⚠️

Jake88

💻 ⚠️

Nick Smirnov

💻

This project follows the all-contributors specification. Contributions of any kind are welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].