reactjs 运行命令npx create-react-app时遇到问题[已关闭]

afdcj2ne  于 2023-04-29  发布在  React
关注(0)|答案(1)|浏览(151)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
23小时前关闭
Improve this question
面临运行npx create-react-app命令的问题,并已经尝试了这些方法:

  1. npx create-react-app
  2. mpm install -g create-react-app什么都不工作,请建议我任何解决方案
    我想运行命令npx create-react-app,但无法继续。除了我在上面提到的几点之外,请给我一些建议。
jvlzgdj9

jvlzgdj91#

如果你正在开始一个新的React项目,我建议你至少使用Vite代替https://vitejs.dev/guide/
如果你仍然想要使用create-react-app的解决方案:
1.命令是npx create-react-app <folder name>。如果要使用当前所在的文件夹,可以使用创建一个新文件夹npx create-react-app new_folder_name_herenpx create-react-app .
1.您在mpm install -g create-react-app中有一个错字。是npm install -g create-react-app
无论如何,确保正确阅读入门指南与你使用的任何东西。

相关问题