开发者问题收集

如何修复 Metro Bundler 进程退出并显示代码 1

2019-11-08
17358

如何修复 Metro Bundler 进程退出并显示代码 1 Metro 'Bundler' 进程退出并显示代码 1

Error: Metro  'Bundler' process exited with code 1
    at 'ChildProcess' .<anonymous> (C:\@expo\[email protected]\'src'\Project.ts:1841:16)
    at Object.onceWrapper (events.js:300:26)
    at ChildProcess.emit (events.js:210:5)
    at Process.ChildProcess._    handle.onexit (internal/child_ 
    process.js:272:12)
 ERR! code     ELIFECYCLE
 ERR! err no 1
 ERR! @ start: `expo start`
 ERR! Exit status 1
 ERR!
 ERR! Failed at the @ start script.
ERR! This is probably not a problem with npm. There is likely additional logging output above.

 ERR! A complete log of this run can be found in:
 ERR!     C:\Users\Pranav\AppData\Roaming\npm-cache\_logs\2019-11-08T04_33_07_234Z-debug.log
3个回答

如果您在 Windows 上运行,您可以尝试 github 上此线程中提供的解决方案。

来自 github 的解决方案似乎有效:

Got this issue today on windows, but don't need to downgrade node, just as discussed on stackoverflow just need to change some hashes on your project:

\node_modules\metro-config\src\defaults\blacklist.js

var sharedBlacklist = [
  /node_modules[/\\]react[/\\]dist[/\\].*/,
  /website\/node_modules\/.*/,
  /heapCapture\/bundle\.js/,
  /.*\/__tests__\/.*/
];

更改为:

var sharedBlacklist = [
  /node_modules[\/\\]react[\/\\]dist[\/\\].*/,
  /website\/node_modules\/.*/,
  /heapCapture\/bundle\.js/,
  /.*\/__tests__\/.*/
];

https://github.com/expo/expo-cli/issues/1074

Dagur Leó
2019-11-08

看起来这是 node js 版本 (12.13.1) 的问题。它与旧版本 12.9.1 配合使用效果很好。

我遇到了类似的问题,所以我卸载了此版本并安装了旧版本。这解决了 metro bundler 问题。

teckmk
2019-12-18

我通过简单地删除文件夹解决了这个问题: C:\Users\bunty\AppData\Roaming\npm 并删除 npm 文件夹。 并在 cmd(管理员)中输入命令 npm install -g expo-cli 。 如果仍然不起作用,请尝试使用较低版本的 node(12.9.0)。

ghanshyam bendkoli
2019-12-01