DEV Community

Asish kumar sahu
Asish kumar sahu

Posted on

Can anyone help this when i do npm start in react js I got this error

Image description

Top comments (1)

Collapse
 
rhieger profile image
Robert Hieger

I believe this error probably indicates that you are missing the necessary modules for your application to run.

Probably your problem would be solved by typing this command at the prompt:

npm install

After you do this, all packages for your application should be installed.

Then if you run npm start again, it should work.

Hope this works for you.

Best,

Robert Hieger