npx create-react-app is Not Working even After Uninstalling create-react-app  Package Globallly -2023


If you are React Developer you know we can create a normal react App Using Command npx create-react-app appname .  But Sometimes the Command Shows the following error:

npx create-react-app not working..you have to uninstall this package                                               

npm uninstall -g create-react-app                                                                                                               

yarn uninstall -g create-react-app                                                                                                               


but  the problem is this error keep popping up even after running this command to your terminal.Creating a react app on your own is too tedious and most of us directly run this command and make it easier..

Solution:


so Here Is  the simple Solution for you:

Step:1 open your VSCode Terminal and write this commands


Step:2 npm init

Step:3:npm install create-react-app


Step:4  npx create-react-app


Step:4 Here you go


This is The best And Easiest Solution i got so far.
I tested This Solution personally and its working fine for me.
  

Thank You for Reading this Blog..




Comments

Popular posts from this blog

Remove Input OutLine on Focus With Tailwind CSS