Metro bundler has encountered an internal error
See original GitHub issueWhen I run yarn start
in the terminal and use Expo App to open my RN Project in iPhone, an error appears as follows:
Issue Analytics
- State:
- Created 6 years ago
- Reactions:5
- Comments:49 (5 by maintainers)
Top Results From Across the Web
Metro Bundler has encountered an internal error, please ...
I`ve faced the same issue. In my case basically, it is because of some broken/wrong paths in imports statements. The issue gets solved...
Read more >metro bundler has encountered an error: while trying to ...
Building iOS bundle Metro Bundler has encountered an internal error, please check your terminal error output for more details Cannot read property 'status'...
Read more >metro bundler has encountered an internal error react native
When I received an offer for a software engineering role to build an app in React Native, I wasn't sure what to expect....
Read more >Javascript – Metro Bundler has encountered an internal error ...
after checkout when i say react-native run-android im getting below error. Metro Bundler has encountered an internal error, please check your terminal error...
Read more >Troubleshooting - React Native
The Metro bundler runs on port 8081. If another process is already using that port, you can either terminate that process, or change...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
easiest fix for me is killall node -9
Fam, I fixed my issue and like most of them, it’s completely my fault. I was refactoring and deleted some files without cleaning up some imports of the deleted files. The only way I found this was to add a console.log in metro (node_modules/metro/src/lib/formatBundlingError.js).
function formatBundlingError(error) { console.log(error); }