'Cannot find module 'react-dev-utils/clearConsole'

I fetched this kind of error in my react project Can not find module 'react-dev-utils/clearConsole' . React version of my project is 16.2. Actually when I install prop-types with npm then I fetched this error and my project was stopped. I can not run my project again. What is the solution for this?



Solution 1:[1]

It looks like you lack some dependencies. In this particular example it is react-dev-utils.

Simple npm install --save-dev react-dev-utils should do.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 JamesHawking