
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
react-redux-dynamic-reducer
Advanced tools
This library provides React bindings for redux-dynamic-reducers, enabling reducers to be attached when components are mounted.
import { combineReducers } from 'redux'
import { createStore } from 'redux-dynamic-reducer'
...
const reducer = combineReducers({ staticReducer1, staticReducer2 })
const store = createStore(reducer)
Please refer to the redux-dynamic-reducer for more details on creating the store.
The withReducer higher-order component (HOC) can be used to bundle a reducer into a component that will automatically be attached into the store when mounted. This method will also mount the component within a subspace for easy access to it's reducer. Please refer to the redux-subspace documentation for configuring the subspace to work with any middleware, enhancers or other extensions you are using.
import { withReducer } from 'react-redux-dynamic-reducer'
export default withReducer(myReducer, 'defaultKey')(MyComponent)
import MyComponent from './MyComponent'
<Provider store={store}>
...
<MyComponent />
...
</Provider>
Multiple instances of the same component can be added, as long as the have unique instance identifiers:
import MyComponent from './MyComponent'
...
const MyComponent1 = MyComponent.createInstance('myInstance1')
const MyComponent2 = MyComponent.createInstance('myInstance2')
...
<Provider store={store}>
<MyComponent1 />
<MyComponent2 />
</Provider>
Additional state can be mapped for the component or an instance of the component my providing an additional mapper:
export default withReducer(myReducer, 'defaultKey', { mapExtraState: (state, rootState) => ({ /* ... */ }) })(MyComponent)
...
const MyComponentInstance = MyComponent
.createInstance('instance')
.withExtraState((state, rootState) => ({ /* ... */ }) })
...
const MyComponentInstance = MyComponent
.createInstance('instance')
.withOptions({ mapExtraState: (state, rootState) => ({ /* ... */ }) })
The extra state is merged with the bundled reducer's state.
By default, the components are namespaced. If namespacing is not wanted for a component or and instance of the component, an options object can be provided to prevent it:
export default withReducer(myReducer, 'defaultKey', { namespaceActions: false })(MyComponent)
...
const MyComponentInstance = MyComponent.createInstance('instance').withOptions({ namespaceActions: false })
Combined components and reducers can be nested as deep as required, but note, the nested reducer will appear at the top level of the redux state.
Examples can be found here.
FAQs
react-redux Provider extension for redux-subspace
We found that react-redux-dynamic-reducer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.