感谢您阅读本文并帮助解决此问题。
我正在尝试在Windows计算机上运行nodejs并在安装expo-cli之后启动expo客户端。最初它可以正常工作,但不能进行实时刷新或任何其他刷新,因此我尝试再次删除,卸载/重新安装nodejj,现在我根本无法启动。
我已经尝试从此处进行故障排除步骤:npm ERR! code ELIFECYCLE
但不幸的是,他们根本没有帮助...
我不知道是否有执行全新安装的方法,因为它可能保存在缓存中的某个位置(即使我完全删除了目录)。我愿意在这里提出任何建议。
预先感谢您的所有答复和评论。
这是来自cli的错误:
C:\Users\Sergej\NewProject>npm start
> @ start C:\Users\Sergej\NewProject
> expo start
Starting project at C:\Users\Sergej\NewProject
Expo DevTools is running at http://localhost:19002
Opening DevTools in the browser... (press shift-d to disable)
error Invalid regular expression: /(.*\\__fixtures__\\.*|node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/: Unterminated character class. Run CLI with --verbose flag for more details.
Metro Bundler process exited with code 1
Set EXPO_DEBUG=true in your env to view the stack trace.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ start: `expo start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ 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\Sergej\AppData\Roaming\npm-cache\_logs\2019-10-31T16_44_26_903Z-debug.log
这是日志文件文本:
0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'start'
1 verbose cli ]
2 info using npm@6.12.0
3 info using node@v12.13.0
4 verbose run-script [ 'prestart', 'start', 'poststart' ]
5 info lifecycle @~prestart: @
6 info lifecycle @~start: @
7 verbose lifecycle @~start: unsafe-perm in lifecycle true
8 verbose lifecycle @~start: PATH: C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;C:\Users\Sergej\NewProject\node_modules\.bin;C:\Users\Sergej\AppData\Roaming\npm;C:\Program Files\nodejs\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Users\Sergej\AppData\Local\Microsoft\WindowsApps;C:\Users\Sergej\AppData\Roaming\npm
9 verbose lifecycle @~start: CWD: C:\Users\Sergej\NewProject
10 silly lifecycle @~start: Args: [ '/d /s /c', 'expo start' ]
11 silly lifecycle @~start: Returned: code: 1 signal: null
12 info lifecycle @~start: Failed to exec start script
13 verbose stack Error: @ start: `expo start`
13 verbose stack Exit status 1
13 verbose stack at EventEmitter.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\index.js:332:16)
13 verbose stack at EventEmitter.emit (events.js:210:5)
13 verbose stack at ChildProcess.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14)
13 verbose stack at ChildProcess.emit (events.js:210:5)
13 verbose stack at maybeClose (internal/child_process.js:1021:16)
13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)
14 verbose pkgid @
15 verbose cwd C:\Users\Sergej\NewProject
16 verbose Windows_NT 10.0.18362
17 verbose argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "start"
18 verbose node v12.13.0
19 verbose npm v6.12.0
20 error code ELIFECYCLE
21 error errno 1
22 error @ start: `expo start`
22 error Exit status 1
23 error Failed at the @ start script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]
答案 0 :(得分:0)
因此,在花了可观的时间尝试解决该问题之后(通常,我发现的所有步骤都涉及以一种或另一种方式重新安装依赖项),我找到了答案。
事实证明,最新的node.js问题在Windows上存在一些问题,对我来说解决此问题的唯一方法是下载以前的版本。我是从
下载的https://nodejs.org/en/download/releases/
为我修复的版本是Node.js 10.x
快速且轻松(几乎)
我希望这将对遇到类似问题的人有所帮助...
答案 1 :(得分:0)
我遇到了类似的问题,我首先尝试了以下步骤:
rm -rf node_modules
rm -rf package-lock.json
npm install
npm start
但没有任何效果。
因此,我在终端消息中进行了挖掘,发现一个babel-eslint
依赖项指向与我正在处理的目录不同的其他项目目录,然后我朝那个方向寻找了node_modules
文件夹,瞧!这是我肯定不应该运行npm install
的问题。
在我的项目容器文件夹中一个简单的rm -rf node_modules
就足以使所有工作再次正常!
答案 2 :(得分:0)
我有完全相同的错误消息。这可能无关紧要,但是我发现了我的错误。使用VS 2019CE node.js项目。对我来说,是我输入了诸如debug(“试图将某些内容记录到控制台”)之类的内容,然后我发现它是错误的,并添加了缺少的控制台键盘console.debug(“ bla”),然后运行并失败了.. 。 事实是VS是自动添加的
import { debug } from 'webpack';
我只是将其注释掉,然后它又开始工作了。 我将其留给最终要做同样事情的人。
答案 3 :(得分:0)
我在尝试在 gitlab ci 上构建时遇到了同样的问题,我决定定义一个 CI: false
环境变量,然后它就可以工作了,我不需要更改 node 或 npm 版本。