Reputation: 9
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
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