我整天都在与这个问题作斗争,但仍然无法弄清我的缺失。我一直在计算机上的Documents目录下创建项目,但是在使用create-react-app后尝试启动项目时,我开始遇到以下错误。
my-app@0.1.0 start C:\Users\{user}\Documents\B&R Fun\nginx_test_deploy\my-app
react-scripts start
'R' is not recognized as an internal or external command,
operable program or batch file.
internal/modules/cjs/loader.js:985
throw err;
^
Error: Cannot find module 'C:\Users\{user}\Documents\react-scripts\bin\react-scripts.js'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:982:15)
at Function.Module._load (internal/modules/cjs/loader.js:864: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! my-app@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the my-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\{user}\AppData\Roaming\npm-cache\_logs\2020-03-30T21_02_14_553Z-debug.log
有趣的是,在桌面上运行完全相同的命令可以创建一个没有错误的应用程序。我是否缺少一些配置,这些配置可能会影响在“文档”文件夹下创建的应用?
答案 0 :(得分:0)
您应尝试清除并重新安装node_modules。您可以通过运行以下命令来做到这一点。
rm -rf node_modules package-lock.json && npm install && npm start
答案 1 :(得分:0)
尝试重命名B&R Fun
文件夹,以免出现“&”号。看来&
破坏了一切。参见this issue