I am using React and ReactDOM of version 16.0.0 and react-addons-perf 15.4.2 that is latest version. But i am gating this pile time error.
./node_modules/react-addons-perf/index.js Module not found: Can't resolve 'react-dom/lib/ReactPerf' in '....\node_modules\react-addons-perf'
I am using React and ReactDOM of version 16.0.0 and react-addons-perf 15.4.2 that is latest version. But i am gating this pile time error.
./node_modules/react-addons-perf/index.js Module not found: Can't resolve 'react-dom/lib/ReactPerf' in '....\node_modules\react-addons-perf'
Share Improve this question asked Oct 5, 2017 at 4:59 shyamshyam 3472 silver badges7 bronze badges 1- read the breaking changes on react v16 – Rei Dien Commented Oct 5, 2017 at 5:22
1 Answer
Reset to default 16To follow up on what Rei Dien said, the React 16 announcement mentions the following:
react-addons-perf no longer works at all in React 16. It’s likely that we’ll release a new version of this tool in the future. In the meantime, you can use your browser’s performance tools to profile React ponents.
To put it simply, just npm uninstall react-addons-perf
and everything should be fine.