【问题标题】:Create React App: src and public folders are not creating on installation [duplicate]创建 React App:安装时未创建 src 和公用文件夹 [重复]
【发布时间】:2020-06-18 12:27:02
【问题描述】:

我在尝试创建 React 项目时使用 npx 或使用 yarn 总是冻结,

这是使用npx时的CMD部分:

D:\React_Redux_Course\React Projects>npx create-react-app my_app_test --use-npm
npx: installed 98 in 50.461s

Creating a new React app in D:\React_Redux_Course\React Projects\my_app_test.

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 D:\React_Redux_Course\React Projects\my_app_test\node_modules\babel-runtime\node_modules\core-js
> node -e "try{require('./postinstall')}catch(e){}"


> core-js@3.6.5 postinstall D:\React_Redux_Course\React Projects\my_app_test\node_modules\core-js
> node -e "try{require('./postinstall')}catch(e){}"


> core-js-pure@3.6.5 postinstall D:\React_Redux_Course\React Projects\my_app_test\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 1624 packages from 750 contributors and audited 1628 packages in 1030.934s

58 packages are looking for funding
  run `npm fund` for details

found 1 low severity vulnerability
  run `npm audit fix` to fix them, or `npm audit` for details

并在使用yarn 命令以及以下 cmd 时冻结:

D:\React_Redux_Course>yarn create react-app setup-antd-first
yarn create v1.22.4
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...

success Installed "create-react-app@3.4.1" with binaries:
      - create-react-app

Creating a new React app in D:\React_Redux_Course\setup-antd-first.

Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...

yarn add v1.22.4
[1/4] Resolving packages...
[2/4] Fetching packages...
info fsevents@1.2.12: The platform "win32" is incompatible with this module.
info "fsevents@1.2.12" is an optional dependency and failed compatibility check. Excluding it from installation.
info fsevents@2.1.2: The platform "win32" is incompatible with this module.
info "fsevents@2.1.2" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
warning "react-scripts > @typescript-eslint/eslint-plugin > tsutils@3.17.1" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta".
[4/4] Building fresh packages...
success Saved lockfile.
success Saved 14 new dependencies.
info Direct dependencies
├─ cra-template@1.0.3
├─ react-dom@16.13.1
├─ react-scripts@3.4.1
└─ react@16.13.1
info All dependencies
├─ @babel/plugin-syntax-typescript@7.10.1
├─ @babel/plugin-transform-flow-strip-types@7.9.0
├─ @babel/plugin-transform-runtime@7.9.0
├─ @babel/plugin-transform-typescript@7.10.1
├─ @babel/preset-typescript@7.9.0
├─ babel-preset-react-app@9.1.2
├─ cra-template@1.0.3
├─ eslint-config-react-app@5.2.1
├─ react-dev-utils@10.2.1
├─ react-dom@16.13.1
├─ react-error-overlay@6.0.7
├─ react-scripts@3.4.1
├─ react@16.13.1
└─ scheduler@0.19.1
Done in 212.18s.

我不知道问题到底出在哪里,可能还是缺少需要安装的软件包之类的?

对于这两种情况,我都没有找到 src 文件夹,并且按照我的解释总是卡住或冻结...

请给我一些建议...

编辑:

这是表示冻结的屏幕截图:

这是项目文件夹:

【问题讨论】:

  • freezes 是什么意思?看起来一切都安装成功了
  • 您的文件夹可能没有正确的权限...否则根据您的代码 sn-p 它看起来不错,并且您的反应应用程序也已成功创建。检查一次。
  • @demkovych 你能检查一下编辑吗?我刚刚添加了 n 张图片可以解释我的冻结的意思
  • 可能对你有帮助:github.com/yarnpkg/yarn/issues/4147
  • 或者只是检查这个线程:github.com/facebook/create-react-app/issues/8088

标签: reactjs hadoop-yarn antd npx


【解决方案1】:

首先你应该删除旧版本的create-react-app cli

现在执行以下操作即可创建您的应用程序。

  1. npm rm -g create-react-app
  2. npm install -g create-react-app
  3. npx create-react-app my-app

注意: 当使用正确的 create-react-app 版本时,你会看到一个额外的包cra-template

安装包。这可能需要几分钟。
使用 cra-template 安装 react、react-dom 和 react-scripts...

虽然以前的版本显示如下:

安装包。这可能需要几分钟。
安装 react、react-dom 和 react-scripts...

【讨论】:

  • 哇,兄弟,你节省了我的时间,非常感谢它终于解决了
  • 干杯伙伴...!!!
猜你喜欢
  • 2020-08-12
  • 2021-02-12
  • 1970-01-01
  • 2020-04-03
  • 2020-08-05
  • 1970-01-01
  • 2020-06-13
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多