npm clear cache react native code example

Example 1: npm start reset cache

npm start -- --reset-cache

Example 2: watchman watch-del-all, and react-native start --reset-cache

watchman watch-del-all, and react-native start --reset-cache

Example 3: how to clear pod cache in react native

rm -rf ~/Library/Caches/CocoaPods
rm -rf Pods
rm -rf ~/Library/Developer/Xcode/DerivedData/*
pod deintegrate
pod setup
pod install

Example 4: yarn start --reset-cache

watchman watch-del-all && rm -f yarn.lock && rm -rf node_modules && yarn && yarn start --reset-cache

Tags:

Misc Example