0

My version of npm and npx is 6.14.4 and my operating system is Windows 10. Before I could use this command.

Command line error message

Guersom
  • 5
  • 1
  • 2

2 Answers2

1

try this feel free to help

npm cache clean --force

npm install -g create-react-app

npx create-react-app "Name-Folder-App Must Be LowerCase"

Or if you work with yarn
yarn create react-app my-app

if you have any problem with your project of npm make that

npm i -f
Mahdi-Soultana
  • 144
  • 1
  • 9
0

as stated by the create react app documentation:

Creating an App

You’ll need to have Node 8.16.0 or Node 10.16.0 or later version on your local development machine (but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to switch Node versions between different projects.

Here is the link for de official documentation.

So you need to update your current nodejs version.

Danizavtz
  • 3,166
  • 4
  • 24
  • 25