-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Description
Sorry this comes back again with the latest 0.56. No steps to reproduce, the startup just won't work.
Environment
Patrices-iMac:adn-083 patricegagnon$ react-native info
Scanning folders for symlinks in /Users/patricegagnon/_projects/outs/adn-083/node_modules (15ms)
(node:71272) ExperimentalWarning: The fs.promises API is experimental
React Native Environment Info:
System:
OS: macOS High Sierra 10.13.6
CPU: x64 Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz
Memory: 34.46 MB / 16.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 10.1.0 - /usr/local/bin/node
Yarn: 1.6.0 - /usr/local/bin/yarn
npm: 5.6.0 - /usr/local/bin/npm
Watchman: 4.9.0 - /usr/local/bin/watchman
SDKs:
iOS SDK:
Platforms: iOS 11.4, macOS 10.13, tvOS 11.4, watchOS 4.3
IDEs:
Xcode: 9.4.1/9F2000 - /usr/bin/xcodebuild
npmPackages:
react: 16.4.1 => 16.4.1
react-native: 0.56.0 => 0.56.0
npmGlobalPackages:
create-react-native-app: 1
Description
This appears to be a regression as we've seen this before. The app refuses to start.
Reproducible Demo
The entire project is shared on Dropbox. It just refuses to start:
Activity
patrice4github commentedon Sep 10, 2018
Here is the console stacktrace:
error: bundling failed: Error: ENOENT: no such file or directory, uv_cwd at Object.resolve (path.js:1086:25) at loadPrivatePartialConfig (/Users/patricegagnon/_projects/outs/adn-083/node_modules/@babel/core/lib/config/partial.js:44:39) at loadFullConfig (/Users/patricegagnon/_projects/outs/adn-083/node_modules/@babel/core/lib/config/full.js:43:39) at transformSync (/Users/patricegagnon/_projects/outs/adn-083/node_modules/@babel/core/lib/transform-sync.js:15:38) at Object.transform (/Users/patricegagnon/_projects/outs/adn-083/node_modules/metro/src/reactNativeTransformer.js:163:5) at Object.<anonymous> (/Users/patricegagnon/_projects/outs/adn-083/node_modules/metro/src/JSTransformer/worker.js:204:23) at Generator.next (<anonymous>) at step (/Users/patricegagnon/_projects/outs/adn-083/node_modules/metro/src/JSTransformer/worker.js:328:291) at /Users/patricegagnon/_projects/outs/adn-083/node_modules/metro/src/JSTransformer/worker.js:328:521 BUNDLE [ios, dev] ../../index.js ░░░░░░░░░░░░░░░░ 0.0% (0/1), failed.
mjonesjr90 commentedon Sep 10, 2018
Seeing the same issue
patrice4github commentedon Sep 10, 2018
Have you tried rebooting?
atyenoria commentedon Sep 11, 2018
I came across the same issue just now. npm reinstalling and rebooting work fine.
CodeMuz commentedon Sep 11, 2018
Check if
$ yarn start
works. The metro bundler wasn't able to run on port 8081 for me and I needed to run$ killall node
patrice4github commentedon Sep 11, 2018
mjonesjr90 commentedon Sep 11, 2018
Restarting worked for me as well - thanks!
react-native-bot commentedon Sep 12, 2018
It looks like you are using an older version of React Native. Please update to the latest release, v0.57 and verify if the issue still exists.
The ":rewind:Old Version" label will be removed automatically once you edit your original post with the results of running
react-native info
on a project using the latest release.DalerAsrorov commentedon Oct 11, 2018
Thanks @CodeMuz,
$ killall node
and then$ rm -rf ios/build/ && react-native run-ios
worked for me.kaushal9678 commentedon Dec 23, 2018
Just close your current terminal window and run again ios, android commands. It will work. It worked for me.
arlovip commentedon Apr 1, 2019
Thanks. It solved my problem
2 remaining items
kaushal9678 commentedon May 3, 2019
Just remove your app from the emulator or device and close the terminal that running bundler. Now start the process again by calling react-native run-android or iOS it will work.
kelset commentedon May 3, 2019
Closing as it seems that it's just a caching issue - thanks everyone for the feedback!
Youn-ha commentedon Jun 27, 2019
Rebooting fixed my problem out too. I tried every other methods but all failed. thanks for everyone
al-exe commentedon Aug 2, 2019
you saved my life, thank you
dvetal commentedon Nov 9, 2019
I saw this on 57.7 . just a note.
Gian-08 commentedon Nov 12, 2019
ENOENT: no such file or directory, scandir 'C:\Users\gian-\gsm-v3\pages\node_modules\imagenes'
Failed building JavaScript bundle. HELP ME PLEASE :(
raimonkh commentedon Nov 13, 2019
I've seen this on MacOS when building on CircleCI (the android app).
I haven't found the issue yet
toro705 commentedon Dec 6, 2019
found any answers yet?
raimonkh commentedon Dec 9, 2019
@toro705 in our case we created those files manually as the build process only required they "existed" although empty...
ryancwalsh commentedon Apr 10, 2020
Thanks @kaushal9678 . I was in Homestead Vagrant. I exited out of that terminal session, ran
vagrant ssh
again to get back in, rannpm install
again, and thennpm start
worked without error.