1

Do you know any worth recommending npm packages (for the DEV environment needs) to find spots in React app where redux store state is mutated ?

Currently I'm using Redux Freeze State package but unfortunatelly the indicated package is outdated, not supported any more and causes IE11 arguments caller exception.

https://www.npmjs.com/package/redux-freeze-state

import { createStore } from 'redux';
import freezeState from 'redux-freeze-state';

let reducer = ...
let store = createStore(freezeState(reducer));
ELing
  • 249
  • 6
  • 19

1 Answers1

0

Yes, there's several, and I have them listed in the Redux DevTools#Linting section of my Redux addons catalog.

Listing those specifically:

markerikson
  • 63,178
  • 10
  • 141
  • 157