无法创建和运行React Application

时间:2019-12-11 05:34:15

标签: reactjs npm

我正在尝试运行create-react-app,但似乎无法正常运行。我正在尝试以下命令:

  1. create-react-app my-app
  2. cd my-app
  3. npm start

,并在尝试运行时出现以下错误 如果可以的话,enter image description here很棒

3 个答案:

答案 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

来源:https://reactjs.org/docs/create-a-new-react-app.html

答案 2 :(得分:0)

尝试删除creat-react-app样板, 然后使用以下命令创建一个新的

npx create-react-app my-app 2