I am trying to use npx create-react app but i have errors that is shown below:
npm ERR! Unexpected end of Json input w
I had the same problem in creating react project when I used commands from official source https://reactjs.org/docs/create-a-new-react-app.html#create-react-app
npx create-react-app my-app
cd my-app
npm start
The above commands din't work on my windows. I have Node >= 6 and npm >= 5.2 on my machine even then it is not able to open localhost:3000 then I used this commands
npm install -g create-react-app
create-react-app my-app-name
cd my-app-name
npm start
It worked perfectly fine. I learned from https://www.youtube.com/watch?v=pCgDRgmfilE