Emmanuel Madu IP
Emmanuel Madu IP

Reputation: 9

I have been trying to install or create a react app but I kept getting this error message

I have been trying to install or create a react app but I kept getting this error message " npm ERR! Unexpected end of JSON input while parsing near '...5VmmIPyPaAPmy1Iv3blBY'"

Also: npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Madu Emmanuel IP\AppData\Roaming\npm-cache_logs\2020-10-13T11_40_59_715Z-debug.log

Upvotes: 0

Views: 51

Answers (1)

Sagi Rika
Sagi Rika

Reputation: 2979

Go to your Command Prompt, cd into the desired folder and write:

npm i -g create-react-app

Once done, write:

npx create-react-app <project-name>

It should work perfectly.

Upvotes: 1

Related Questions