Legacy React addon providing a pure render mixin for shallow comparison of props and state. Current stable version 15.6.3. No longer maintained; recommended migration path is to use React.PureComponent. This package exists only for backwards compatibility and should not be used in new code. It is part of the deprecated React addons collection.
npm install react-addons-pure-render-mixinNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to use PureRenderMixin with createReactClass to optimize re-renders via shallow prop/state comparison.
Migrate to React.PureComponent or React.memo for function components.
Use immutable data structures or forceUpdate() when deep data changes.
Convert to class extending React.PureComponent or use React.memo for functional components.
Use 'import PureRenderMixin from ...' without braces.
Use 'create-react-class' package and require/createReactClass.