Home > Software engineering >  Can't use npx create-react-app "no longer support global installation of Create React App&
Can't use npx create-react-app "no longer support global installation of Create React App&

Time:12-22

I can't create a new application using the create-react-app. The command I am using is npx create-react-app appname --template typescript.

The error I get is:

You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0).

We no longer support global installation of Create React App

I removed the global package with npm uninstall -g create-react-app. I then checked the packaged is not installed globally by

  1. Running npm list -g
  2. Checking the folder C:\Users\my-user\AppData\roaming\npm

But create-react-app keeps saying I have globally installed "create-react-app 4.0.3".

After all I did clean cache with npm cache clean --force and reboot computer but with the same result.

I am runnig on windows 10, npm 7.18.1 and node 16.4.0

What am I missing?

Thanks in advance

CodePudding user response:

This caught me too. You need to run

npx clear-npx-cache
  • Related