In react-native development, there are multiple caches used when the app is built:
- React-native packager cache
- Emulator cache
- Java side cache (.gradle) folder (only in android)
- npm cache (if relevant?)
Am I missing something also? Because I'm trying to clear cache in react-native, to be able to repeat a bug that only occurs on first usage. But clearing those caches above did not help. This is on android. When the app is building, most of the rows DO NOT say UP-TO-DATE, as expected, because I cleared the cache.
But, there are still many rows where this text is printed. Like:
app:preBuild UP-TO-DATE
app:preDebugBuild UP-TO-DATE
:app:preReleaseBuild UP-TO-DATE
The question is, how can I clear the whole cache related to react-native development?
28 Answers 28
For React Native Init approach (without expo) use:
npm start -- --reset-cache
10 Comments
Error: unknown -- do?Simplest one(react native,npm and expo )
For React Native
react-native start --reset-cache
for npm
npm start -- --reset-cache
for Expo
expo start -c
2 Comments
yarn cache cleanClearing the Cache of your React Native Project:
npm < 6.0 and RN < 0.50:
watchman watch-del-all && rm -rf $TMPDIR/react-* &&
rm -rf node_modules/ && npm cache clean && npm install &&
npm start -- --reset-cache
npm>= 6.0 and RN>= 0.50:
watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* &&
rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean --force &&
npm install && npm start -- --reset-cache
4 Comments
npm start and npx react-native start were hanging with no feedback in console whatsoever and this did the trick on RN 0.73.0.Currently, it is built using npx, so it needs to be updated.
Expo : expo start -c
Terminal : npx react-native start --reset-cache
iOS : Xcode -> Product -> Clean Build Folder
Android : Android Studio -> Build -> Clean Project
1 Comment
try this
react-native start --reset-cache
Comments
For those who are using expo-cli
expo start -c
Comments
Below commands worked for me for Android and Yarn,
cd android && ./gradlew cleanBuildCache && cd .. &&
watchman watch-del-all && rm -rf node_modules/ &&
rm -rf $TMPDIR/react-native-packager-cache-* &&
rm -rf $TMPDIR/metro-bundler-cache-* &&
yarn cache clean && yarn install &&
yarn start --reset-cache
Comments
This is what works for me:
watchman watch-del-all && rm -f podfile.lock && rm -rf node_modules && yarn && yarn start --reset-cache
Here's a great discussion on GitHub which helped me a lot. Clearing the Cache of your React Native Project by Jarret Moses
There are solutions for 4 different instances.
RN <0.50 -
watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cacheRN>=0.50 -
watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache- NPM>=5 -
watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache - Windows -
del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache
The solution is similar to Vikram Biwal's Answer.
And there is a discussion below in the given link, so even if the above 4 cases don't work for you, you can scroll through and find a possible solution.
Comments
Clearing the Cache of your React Native Project: if you are sure the module exists, try this steps:
- Clear watchman watches: npm watchman watch-del-all
- Delete node_modules: rm -rf node_modules and run yarn install
- Reset Metro's cache: yarn start --reset-cache
- Remove the cache: rm -rf /tmp/metro-*
2 Comments
rm -rf /tmp/metro-* I get zsh: no matches found: /tmp/metro-* I am using RN 0.64.1. Any idea?rm -rf /tmp/metro-\*If you are using WebStorm, press configuration selection drop down button left of the run button and select edit configurations:
Double click on Start React Native Bundler at bottom in Before launch section:
Enter --reset-cache to Arguments section:
Comments
For React Native > v0.7 (without expo) use:
watchman watch-del-all
rm -rf yarn.lock package-lock.json node_modules
rm -rf android/app/build
rm ios/Pods ios/Podfile.lock
rm -rf ~/Library/Developer/Xcode/DerivedData
$TMPDIR/react-native-packager-cache-* $ rm -rf $TMPDIR/metro-bundler-cache-*
npm cache clean --force
yarn cache clean
npm install && cd ios && pod update && cd ..
cd android && ./gradlew clean && cd ..
npm start --reset-cache
Comments
You can clean cache in React Native>= 0.50 and npm> 5 :
watchman watch-del-all &&
rm -rf $TMPDIR/react-native-packager-cache-* &&
rm -rf $TMPDIR/metro-bundler-cache-* &&
rm -rf node_modules/
&& npm cache clean --force &&
npm install &&
npm start -- --reset-cache
Apart from cleaning npm cache you might need to reset simulator or clean build etc.
Comments
React native
npm start -r-cache
or
yarn cache clean
Expo
expo start -c
Comments
npm start -- --reset-cache
Clean build cache
cd android && ./gradlew cleanBuildCache
https://medium.com/@abhisheknalwaya/how-to-clear-react-native-cache-c435c258834e
1 Comment
- android cd android && ./gradlew clean
- ios open xcode then choose product => clear all issue and clean build folder
then yarn start --reset-cache
Comments
Have you tried gradle cleanBuildCache?
https://developer.android.com/studio/build/build-cache.html#clear_the_build_cache
Comments
Well.. i want to share my experience about this issue:
I was facing this problem, and when I opened the task manager I notice many tasks being executed, and they were linked to my project folder.
So I restarted my PC, and when it turned on, I could install all I needed, so the problem got solved itself, it worked to me, hope this help somebody...
Comments
Run in your terminal: expo prebuild --clean
Comments
To yarn use
watchman watch-del-all
yarn --reset-cache
Comments
I had a similar problem, I tried to clear all the caches possible (tried almost all the solutions above) and the only thing that worked for me was to kill the expo app and to restart it.
Comments
I went into this issue today, too. The cause was kinda silly -- vscode auto imported something from express-validator and caused the bug.
Just mentioning this in case anyone has done all the steps to clear cache/ delete modules or what not.
Comments
For android and Npm
watchman watch-del-all && rm -rf node_modules/ &&
rm -rf $TMPDIR/react-native-packager-cache-* &&
rm -rf $TMPDIR/metro-bundler-cache-* &&
npm cache clean && yarn install &&
npm start --reset-cache
Comments
Consider using the below code for a clean ios build:
cd ios && xcodebuild clean && cd .. && npm run ios
Comments
Here's some cache cleaning scripts to add to your package.json. It includes a 'secret-cache' workaround to clear a cache that is missed by react-native clean.
They will clean all the build & react-native caches, but not the package or pod caches, which is usually what you want.
"clean:gradle": "cd android && ./gradlew --stop; rm -rf ~/.gradle/caches/*",
"clean:android": "yarn clean:secret-cache && react-native clean --include android,metro,watchman",
"clean:ios": "yarn clean:secret-cache && react-native clean --include metro,watchman && cd ios && xattr -w com.apple.xcode.CreatedByBuildSystem true build && xcodebuild clean; cd ..",
"clean:secret-cache": "npx react-native start --reset-cache --projectRoot null 1>/dev/null 2>&1 || true",
The 'secret-cache' script will allow your .env updates to work even if you experience the react native dotenv cache bug: https://github.com/goatandsheep/react-native-dotenv#cacheing
Add them to package.json then yarn clean:ios && yarn ios or yarn clean:android && yarn android
In some cases this may still not be enough (e.g. react-native-auth0 still caches auth0Domain). So here's the nuclear option (requires package.json updates above):
# Nuclear option (100% definitely clean everything) - go get a coffee or something
yarn clean:secret-cache && npx react-native clean-project-auto && yarn clean:gradle && yarn && cd android && ./gradlew assemble
Comments
I know it's too late to reply but it might help someone:
In case you just want to clear cache just hit this command
npm cache clean --force
Happy coding :)
Comments
I solved my react-native cache problem by this way:
- open terminal, then
cd 'your project root path' - execute this command:
npm start -- --reset-cache - open your react native project, If the first run doesn't work, you may need to run it again.
Comments
TO Clear cache in IOS/Xcode
Delete folders in
/Users/{YOUR_USERNAME}/Library/Developer/Xcode/DerivedData/
and try again.
rm ~/Library/Developer/Xcode/DerivedData/*
Comments
Explore related questions
See similar questions with these tags.