create-react-native-app icon indicating copy to clipboard operation
create-react-native-app copied to clipboard

Help !!! Unable to solve it tried whatever is available in google "The development server returned response error code 500

Open Sana720 opened this issue 10 months ago • 11 comments

Screenshot (73) Describe the bug error: TypeError: dependencies is not iterable at Graph._resolveDependencies (C:\Users\saahm\OneDrive\Desktop\varcast-app-master\node_modules@react-native-community\cli-plugin-metro\node_modules\metro\src\DeltaBundler\Graph.js:452:23) at Graph._processModule (C:\Users\saahm\OneDrive\Desktop\varcast-app-master\node_modules@react-native-community\cli-plugin-metro\node_modules\metro\src\DeltaBundler\Graph.js:267:38) at async Graph._addDependency (C:\Users\saahm\OneDrive\Desktop\varcast-app-master\node_modules@react-native-community\cli-plugin-metro\node_modules\metro\src\DeltaBundler\Graph.js:378:20) at async Promise.all (index 33) at async Graph._processModule (C:\Users\saahm\OneDrive\Desktop\varcast-app-master\node_modules@react-native-community\cli-plugin-metro\node_modules\metro\src\DeltaBundler\Graph.js:328:5) at async Graph._addDependency (C:\Users\saahm\OneDrive\Desktop\varcast-app-master\node_modules@react-native-community\cli-plugin-metro\node_modules\metro\src\DeltaBundler\Graph.js:378:20) at async Promise.all (index 3) at async Graph._processModule (C:\Users\saahm\OneDrive\Desktop\varcast-app-master\node_modules@react-native-community\cli-plugin-metro\node_modules\metro\src\DeltaBundler\Graph.js:328:5) at async Graph._traverseDependenciesForSingleFile (C:\Users\saahm\OneDrive\Desktop\varcast-app-master\node_modules@react-native-community\cli-plugin-metro\node_modules\metro\src\DeltaBundler\Graph.js:255:5) at async Promise.all (index 0) Add any other context about the problem here.

Sana720 avatar Apr 23 '24 17:04 Sana720

Same error here, running on a Win 11 machine. Works just fine on my Win 10 machine.

AyJayHam avatar May 06 '24 17:05 AyJayHam

Did you ever figure this out? I've been banging my head against the wall attempting to debug this error.

natejhowe avatar May 22 '24 20:05 natejhowe

@Sana720 Delete your Temp folder located here C:\Users{user}\AppData\Local\Temp. Then try again. Fixed it for me.

natejhowe avatar May 22 '24 21:05 natejhowe

Had the same issue today, my Windows bluescreened so that must have corrupted some of my cache. After wiping the Temp folder that @natejhowe mentioned the problem went away!

ivstiv avatar Jun 05 '24 13:06 ivstiv

npx expo install --fix fixed it for me

Manlikevee avatar Jun 16 '24 06:06 Manlikevee

@Sana720 Delete your Temp folder located here C:\Users{user}\AppData\Local\Temp. Then try again. Fixed it for me.

It helped me too, thx!

kerimovok avatar Jul 23 '24 10:07 kerimovok

@Sana720 Delete your Temp folder located here C:\Users{user}\AppData\Local\Temp. Then try again. Fixed it for me.

This one helped . Thanks

Aaqibraza098 avatar Aug 20 '24 19:08 Aaqibraza098

npx expo install --fix

this one helped me . thanks

mugabe00 avatar Aug 28 '24 08:08 mugabe00

@Sana720 Delete your Temp folder located here C:\Users{user}\AppData\Local\Temp. Then try again. Fixed it for me.

solved for me

shaheer741 avatar Sep 08 '24 09:09 shaheer741

I had the same problem and I fixed it right now.

Instead of going into the "Temp" folder inside AppData/Local deleting the interested temp and cache files, you can do the following steps:

  • delete ".expo" folder inside your react native project
  • run this command npm cache clean --force to clear the global npm cache
  • then run this command npx expo start --clear to restart the development server and to clear the transformation javascript/typescript/jsx/tsx files starting fresh

These commands helped me to solve the problem. Yes, you can go and clear cache files and temp files inside your PC folders inside "AppData/Local/Temp", but this approach will save you time with a direct CLI command.

I want to add more: If you need to establish a tunnel connection to see your react native app through expo go on your smartphone do this:

  • npm cache clean --force
  • npx expo start --clear
  • then "ctrl+c" to stop everything
  • npx expo start --tunnel to restart the server in a tunnel

Or you can combine the two last commands npx expo start --clear and npx expo start --tunnel into npx expo start --clear --tunnel after doing npm cache clean --force. But npx expo start --clear --tunnel gave me errors, so do the step by step procedure dividing the two commands.

Hope it helps.

mikeisadev avatar Sep 16 '24 18:09 mikeisadev

Cool so deleting the temp folder is the only working way for me these cache clean commands didn't fix my problem...

Vinaykpro avatar Oct 15 '24 14:10 Vinaykpro