
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
redux-subspace-observable
Advanced tools
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.
This is an extension for redux-subspace to create subspaces for epics. It's designed to work with redux-observable middleware.
npm install --save redux redux-observable redux-subspace redux-subspace-observable
import { createStore, combineReducers } from 'redux'
import { namespaced, applyMiddleware } from 'redux-subspace'
import { createEpicMiddleware, subspaced } from 'redux-subspace-observable'
import { combineEpics } from 'redux-observable'
import { todoReducer, todoEpic } from './todoApp'
import { counterReducer, counterEpic } from './counterApp'
const rootReducer = combineReducers({
todo: todoReducer
counter1: namespaced('counter1')(counterReducer),
counter2: namespaced('counter2')(counterReducer)
})
const rootEpic = combineEpics(
subspaced((state) => state.todo)(todoEpic),
subspaced((state) => state.counter1, 'counter1')(counterEpic),
subspaced((state) => state.counter2, 'counter2')(counterEpic)
)
const epicMiddleware = createEpicMiddleware()
const store = createStore(rootReducer, applyMiddleware())
epicMiddleware.run(rootEpic)
FAQs
redux-subspace wrappers for redux-observable
We found that redux-subspace-observable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.