Create-react-app no longer supported #12314
-
When i create a react app I try to update react-app but its not working Can anyone short out this err |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
you might want to try the following after I have looked into this problem further: npm uninstall -g create-react-app yarn global remove create-react-app which create-react-app - If it returns something (e.g. /usr/local/bin/create-react-app), then do a rm -rf /usr/local/bin/create-react-app to delete manually. npm cache clean --force npm cache verify npx create-react-app@latest wish you good luck :) |
Beta Was this translation helpful? Give feedback.
-
Did you tried to add Sudo before npx? It should have configure permissions properly in some cases. |
Beta Was this translation helpful? Give feedback.
you might want to try the following after I have looked into this problem further:
npm uninstall -g create-react-app
yarn global remove create-react-app
which create-react-app - If it returns something (e.g. /usr/local/bin/create-react-app), then do a rm -rf /usr/local/bin/create-react-app to delete manually.
npm cache clean --force
npm cache verify
npx create-react-app@latest
wish you good luck :)