Reactjs npx create react应用程序,然后我的文件夹中只有节点_模块、package.json、package-lock.json,其他什么都没有

Reactjs npx create react应用程序,然后我的文件夹中只有节点_模块、package.json、package-lock.json,其他什么都没有,reactjs,installation,npx,Reactjs,Installation,Npx,每当我尝试运行npx create react应用程序hello world时,都会出现以下错误: Microsoft Windows [Version 6.3.9600] (c) 2013 Microsoft Corporation. All rights reserved. C:\Users\SUBHAJIT>cd E:\DIP_resrch\newton school\react dom example\demo2 C:\Users\SUBHAJIT>e: E:\DIP_res

每当我尝试运行npx create react应用程序hello world时,都会出现以下错误:

Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.
C:\Users\SUBHAJIT>cd E:\DIP_resrch\newton school\react dom example\demo2
C:\Users\SUBHAJIT>e:
E:\DIP_resrch\newton school\react dom example\demo2>npx create-react-app hello-w
orld
npx: installed 99 in 98.162s
Creating a new React app in E:\DIP_resrch\newton school\react dom example\demo2\
hello-world.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...
> core-js@2.6.11 postinstall E:\   DIP_resrch\newton school\react dom example\demo2
\hello-world\node_modules\babel-runtime\node_modules\core-js
> node -e "try{require('./postinstall')}catch(e){}"
> core-js@3.6.4 postinstall E:\DIP_resrch\newton school\react dom example\demo2\
hello-world\node_modules\core-js
> node -e "try{require('./postinstall')}catch(e){}"
> core-js-pure@3.6.4 postinstall E:\DIP_resrch\newton school\react dom example\d
emo2\hello-world\node_modules\core-js-pure
> node -e "try{require('./postinstall')}catch(e){}"
+ cra-template@1.0.3
+ react-scripts@3.4.1
+ react@16.13.1
+ react-dom@16.13.1
added 1606 packages from 750 contributors and audited 931160 packages in 1344.41
s
58 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities

运行它之后,文件夹中只有
node\u模块
package.json
package lock.json
。没有别的了。如何修复此错误以便创建应用程序?

npx表示所有内容都已正确安装。您确定正在查找正确的文件夹吗?是。。但是我里面没有src和public文件夹,看起来你使用的是非常旧的Windows版本。我刚刚尝试在我的Windows10上创建一个应用程序,输出的开始看起来基本相同。虽然在我的例子中,在“发现0个漏洞”一行之后,npm写了“初始化了git存储库”,并继续做更多的事情。你是否一直等到npm完成工作?另外,安装的第一部分花费了我120.145秒,而您的安装时间是1344.41秒,这意味着您必须更加耐心,而且npm不会卡住:)