I've been having difficulties getting create-react-app to work on my mac. I created a new project and simply tried "npx create-react-app my-app" and it told me that my version of create-react-app was outdated and to uninstall it with "npm uninstall -g create-react-app" but after doing that I literally get 1 file that was audited and its completed. Then when I go and try to install it again I keep getting the same error message. The furthest the install goes is installing the node_modules, package-lock.json, and package.json files then stops and lets me know that my create-react-app is outdated and to do the same command. Im in this never ending loop of uninstalling and reinstalling.
Obviously, I am doing something wrong here. I've even done these commands npm cache clean --force npm cache verify npx clear-npx-cache to clear your npx cache. npx create-react-app your-app
and still it tells me that my create-react-app is outdated. screenshot of my terminal
I'm relatively new to react development but I have definitely started react projects before with no issues.