Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot find module 'react-dev-utils/crossSpawn' exception React App

I downloaded the installer node-v10.6.0-x64 and create-react-app-master package for working on React Application. After creating React App project on PhpStorm, I had the exception like this:

internal/modules/cjs/loader.js:582
    throw err;
    ^

Error: Cannot find module 'react-dev-utils/crossSpawn'
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:580:15)
    at Function.Module._load (internal/modules/cjs/loader.js:506:25)
    at Module.require (internal/modules/cjs/loader.js:636:17)
    at require (internal/modules/cjs/helpers.js:20:18)
    at Object.<anonymous> (D:\Projects\ReactProjects\create-react-app-master\packages\react-scripts\bin\react-scripts.js:18:15)
    at Module._compile (internal/modules/cjs/loader.js:688:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10)
    at Module.load (internal/modules/cjs/loader.js:598:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
    at Function.Module._load (internal/modules/cjs/loader.js:529:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ start: `cd packages/react-scripts && node bin/react-scripts.js start`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the @ start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?

I tried writing to the terminal of PhpStorm:

npm install --save-dev react-dev-utils

but it doesn't help.

How to solve this?

like image 781
niz_sh Avatar asked Nov 01 '18 08:11

niz_sh


1 Answers

Delete node_modules folder and run "npm install" . Hope this will work

like image 92
Rukmoni Nagarajan Avatar answered Oct 28 '22 20:10

Rukmoni Nagarajan