0

Hello guys i am trying to install react into my system but from 2 days i am facing the error for several times now. At first, i have used these commands to install react app and it was working fine for me

1. npm install -g creat-react-app
2. create-react-app reactapp

but form 2 days i was facing error while choosing these options to install, therefore I visited https://create-react-app.dev/docs/getting-started/ where it was clearly stated- If you've previously installed create-react-app globally via npm install -g create-react-app, we recommend you uninstall the package using npm uninstall -g create-react-app to ensure that npx always uses the latest version. Then i used the command npx create-react-app reactapp but i am facing this error. I have multiple time uninstalled nodejs and installed, also have used the command npm cache clean --forcetoo. But not working!!!!

e:\react-learn>npm uninstall -g create-react-app
removed 98 packages in 5.031s

e:\react-learn>npx create-react-app reactapp
npx: installed 98 in 39.888s

Creating a new React app in e:\react-learn\reactapp.

Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...

npm ERR! Unexpected end of JSON input while parsing near '...wRDiDz3X/FqXhQ==","
sh'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\dell\AppData\Roaming\npm-cache\_logs\2020-05-23T12_48_46_9
79Z-debug.log

How to resolve this error???And one interesting thing you know when i copied my previous project and run npm start it is working fine. What is the issue reactapp is justing eating my nerves...

Baby Babai
  • 197
  • 1
  • 10

2 Answers2

0

Try clearing your cache and try again. You can run

npm cache clean --force 

or

npm cache clear --force
Friday Ameh
  • 1,664
  • 1
  • 10
  • 15
0

Try using npx create-react-app client --use-npm. Sometimes some issues arise due to package managers .

Ankush Verma
  • 689
  • 1
  • 8
  • 17