我使用npx create-react-app创建了一个小的React项目,以在一些React教程上工作,但是我无法启动react应用。这是我在尝试运行项目时遇到的错误:
> test-app@0.1.0 start C:\Users\pcname\Documents\React R&D\Pluralsight\test-app
> react-scripts start
'D\Pluralsight\test-app\node_modules\.bin\' is not recognized as an internal or external command,
operable program or batch file.
internal/modules/cjs/loader.js:983
throw err;
^
Error: Cannot find module 'C:\Users\pcname\Documents\react-scripts\bin\react-scripts.js'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:980:15)
at Function.Module._load (internal/modules/cjs/loader.js:862:27)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:74:12)
at internal/main/run_main_module.js:18:47 {
code: 'MODULE_NOT_FOUND',
requireStack: []
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! test-app@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the test-app@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\pcnmame\AppData\Roaming\npm-cache\_logs\2020-04-08T22_43_14_881Z-debug.log
我已卸载节点,然后重新安装它。在全局而非全局上安装react-scripts。我已经将package.json中的启动脚本替换为:
"start": "node node_modules/react-scripts/scripts/start.js"
,并且有效。我也已经在app文件夹内运行了react-scripts,并且再次起作用了!!但是当我在app文件夹内启动npm时,我无法正常工作
奖金:任何在不使用ASP NET Core的情况下在Visual Studio中设置React的教程(不是vs代码)将不胜感激。我目前无法使用VS设置调试器。
答案 0 :(得分:1)
使用create-react-app
后,如果路径中包含无效字符,可能会发生此错误。
从您的路径中删除&
。
从此更改:
C:\Users\pcname\Documents\React R&D\Pluralsight\test-app
对此:
C:\Users\pcname\Documents\React RD\Pluralsight\test-app
现在应该可以工作!
答案 1 :(得分:0)
重新运行 npm i
解决了我的问题。
我遇到了同样的问题,结果“重新安装” npm 包摆脱了烦人的
错误:找不到模块 'C:\Users\pcname\Documents\react-scripts\bin\react-scripts.js' . . . { 代码:'MODULE_NOT_FOUND', 要求堆栈:[] }
错误信息。