【问题标题】:npm create-react-app helloworld not working [closed]npm create-react-app helloworld 不工作[关闭] 【发布时间】:2021-12-03 10:41:04 【问题描述】: This is what I get when i console 【问题讨论】: 使用 npx 代替 npm。检查文档。对于创建反应应用程序 标签: node.js reactjs 【解决方案1】: 您想使用npx 运行create-react-app 而不是节点包管理器npm 如文档中所述: npx create-react-app my-app cd my-app npm start 查看documentation的入门部分 【讨论】: