L.G
L.G

Reputation: 1556

How to clear all react-native cache on Windows, and where are the files?

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

Answers (1)

Hardik Virani
Hardik Virani

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

Check here,

hope this will work for you :)

Upvotes: 3

Related Questions