我正在尝试运行create-react-app
,但似乎无法正常运行。我正在尝试以下命令:
create-react-app my-app
cd my-app
npm start
,并在尝试运行时出现以下错误 如果可以的话,enter image description here很棒
答案 0 :(得分:1)
您共享的日志显示,创建不成功,并且您使用的create-react-app
版本非常旧。
最好使用npx
,这将确保您即时使用最新版本,而无需进行任何全局安装。尝试以下命令
$ npx create-react-app festudents
答案 1 :(得分:1)
请全局删除create-react-app
,请尝试npm remove -g create-react-app
然后只运行那些命令
npx create-react-app my-app
cd my-app
npm start
答案 2 :(得分:0)
尝试删除creat-react-app样板, 然后使用以下命令创建一个新的
npx create-react-app my-app 2