**关闭。**此题需要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命令的问题,并已经尝试了这些方法:
- npx create-react-app
- mpm install -g create-react-app什么都不工作,请建议我任何解决方案
我想运行命令npx create-react-app,但无法继续。除了我在上面提到的几点之外,请给我一些建议。
1条答案
按热度按时间jvlzgdj91#
如果你正在开始一个新的React项目,我建议你至少使用Vite代替
https://vitejs.dev/guide/
。如果你仍然想要使用create-react-app的解决方案:
1.命令是
npx create-react-app <folder name>
。如果要使用当前所在的文件夹,可以使用创建一个新文件夹npx create-react-app new_folder_name_here
或npx create-react-app .
1.您在
mpm install -g create-react-app
中有一个错字。是npm install -g create-react-app
无论如何,确保正确阅读入门指南与你使用的任何东西。