创建 React 应用程序失败。我使用了 npm init react-app my-app
Creating React app failed. I used npm init react-app my-app
请有人帮我解决这个错误:
我使用 npm 创建了 React 应用程序。我不能使用 npx create-react-app,因为即使使用高速互联网也需要 40 多分钟才能创建应用程序。
node - v14.17.3
npm - 7.20.0
browser - Google
这是启动页面的错误。
Failed to compile
./src/index.js 1:35
Module parse failed: Unexpected token (1:35)
File was processed with these loaders:
./node_modules/@pmmmwh/react-refresh-webpack-plugin/loader/index.js
./node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
$RefreshRuntime$ = require('D:/LET'S LEARN SOMETHING/CODING/HTML_CSS_JAVASCRIPT/REACT-WORKING/react-test/node_modules/react-refresh/runtime.js');
| $RefreshSetup$(module.id);
文件路径可能有问题 - D:/LET'S LEARN SOMETHING/
将其更改为不含空格和特殊字符的内容,例如 D:/let_learn_something/
我想我找到了问题所在。
"react-scripts": "^4.0.3" 是问题所在。
不知何故 create-react-app 正在打破 react-scripts(4.0.3)。
一旦我降级到 4.0.1,应用程序就成功启动了。
据我所知,最新版本的 react-scripts 4.0.3 不支持 create-react-app 启动。
请有人帮我解决这个错误:
我使用 npm 创建了 React 应用程序。我不能使用 npx create-react-app,因为即使使用高速互联网也需要 40 多分钟才能创建应用程序。
node - v14.17.3
npm - 7.20.0
browser - Google
这是启动页面的错误。
Failed to compile ./src/index.js 1:35 Module parse failed: Unexpected token (1:35) File was processed with these loaders: ./node_modules/@pmmmwh/react-refresh-webpack-plugin/loader/index.js ./node_modules/babel-loader/lib/index.js You may need an additional loader to handle the result of these loaders. $RefreshRuntime$ = require('D:/LET'S LEARN SOMETHING/CODING/HTML_CSS_JAVASCRIPT/REACT-WORKING/react-test/node_modules/react-refresh/runtime.js'); | $RefreshSetup$(module.id);
文件路径可能有问题 - D:/LET'S LEARN SOMETHING/
将其更改为不含空格和特殊字符的内容,例如 D:/let_learn_something/
我想我找到了问题所在。 "react-scripts": "^4.0.3" 是问题所在。 不知何故 create-react-app 正在打破 react-scripts(4.0.3)。 一旦我降级到 4.0.1,应用程序就成功启动了。 据我所知,最新版本的 react-scripts 4.0.3 不支持 create-react-app 启动。