Heim > Fragen und Antworten > Hauptteil
Ich versuche, eine React-App zu erstellen, aber wenn ich npx create-react-app myapp
时,它显示Eperm错误,当我使用npm install -g create-react-时应用程序
verwende, werden npm-Gelder angezeigt. Ich habe versucht, das Problem durch eine Neuinstallation von node js zu lösen, aber ohne Erfolg.
P粉9464374742023-09-09 09:01:32
首先全局安装create-react-app
,例如:
npm install -g create-react-app
然后,您可以创建您的应用程序,例如:
npx create-react-app myapp