I am trying to create a React application but when I use npx create-react-app myapp
it shows Eperm error and when I use npm install -g create-react- Application
Display npm funds. I tried to solve it by reinstalling node js but without success.
P粉9464374742023-09-09 09:01:32
First install globally create-react-app
, for example:
npm install -g create-react-app
You can then create your application, for example:
npx create-react-app myapp