Unable to reach Expo servers. Falling back to using the cached dependency map (bundledNativeModules.json) from the package "expo" installed in your project.
Instead of writing npm start use expo start
expo start
is the exact command –
Rose This could be a network error. Try running the project with the offline flag: npx expo start --offline
if you are using expo cli -g 46 above run: npx expo start
I encountered the same problem and flushing DNS cache worked for me.
When facing the problem of being unable to reach expo server, try to solve it using the following command: 'expo r -c
'
Encountered the same below error
Unable to reach Expo servers. Falling back to using the cached dependency map (bundledNativeModules.json) from the package "expo" installed in your project
Inside the root directory of the project
Run following command `
npx expo start --clear
`
Just do a cleanup and rebuild your modules Follow the below steps:
delete node_modules .expo .vscode
npm cache clean --force
npm install
npx expo install
npx expo start --clear
Please consider this, and/or clarify the question.
Creating an expo app:
npx create-expo-app my-app
Navigating into project folder:
cd my-app
Launching an expo application:
expo start
© 2022 - 2024 — McMap. All rights reserved.