1

When I try to create a react application using npx create-react-app blog it seems like nothing happened as you can see in this image

enter image description here

I have also tried to reinstall node js but it could not help me at all.

Note: I have tried after removing the spaces between the folder name

If I try to uninstall the globally installed react app the same issue, doesn't affect anything:

enter image description here

Note: I don't have much knowledge but i messed up with proxy last time before this issue.

HamzaKhalid273
  • 355
  • 1
  • 4
  • 11

1 Answers1

0

Try installing npm first:

npm install -g npm@latest

Then install the create-react-app package.

npm install create-react-app

Thanks.