Reputation: 1556
I found this folder: C:\Users\\AppData\Local\Temp\metro-cache Could i delete it ? Is there another react-native cache folder ?
Upvotes: 3
Views: 16456
Reputation: 1755
you can try below command to clear cache of npm packager from window.
del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache
hope this will work for you :)
Upvotes: 3