Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redux-store-cleaner

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-store-cleaner - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "redux-store-cleaner",
"version": "1.0.0",
"version": "1.0.1",
"description": "Reset store branch with simple action",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -7,16 +7,36 @@ # redux-state-cleaner

# Installation
```
npm i redux-store-cleaner -S
```
# Features
* Reset store branches by sending 'undefined' in its reducers
* Clean specific reducer with namespace
# Usage
TODO
Wrap your reducer with `withStoreCleaner` function
```javascript
import withStoreCleaner from 'redux-store-cleaner';
# Features
const someFancyReducer = (state, action) => { /* Impl */ };
TODO
export default withStoreCleaner(someFancyReducer, 'someFancyReducerNamespace');
```
# Installation
TODO
and call cleanStore wherever you want
```javascript
import { cleanStore } from 'redux-store-cleaner';
import { store } from './store';
store.dispatch(cleanStore('someFancyReducerNamespace'));
// You can also clean all stores with omitting namespace
// store.dispatch(cleanStore('));
```
# License
MIT © Andrew Paramoshkin
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc