119

I am building a simple React Native app with create-react-native-app using only react-navigation and base-64(base 64 encode/decode) as dependencies. Over time starting the app became slower and now sometimes it is getting stuck(waiting for about 30min) on "Starting packager..." after running NPM start.

I've tried starting it with "npm start -- --reset-cache" but nothing changed

Once it is up and running I don't get any error or warning in DevTools or terminal. Also there are no issues with the performance of the app

What can I do to make NPM start smooth and quickly as before? Are there any general steps I can take to troubleshoot this issue?

Here is my package.json

{
  "name": "test",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "jest-expo": "~27.0.0",
    "react-devtools": "^3.2.3",
    "react-native-scripts": "1.14.0",
    "react-test-renderer": "16.3.1"
  },
  "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
  "scripts": {
    "start": "react-native-scripts start",
    "eject": "react-native-scripts eject",
    "android": "react-native-scripts android",
    "ios": "react-native-scripts ios",
    "test": "jest"
  },
  "jest": {
    "preset": "jest-expo"
  },
  "dependencies": {
    "base-64": "^0.1.0",
    "expo": "^27.0.1",
    "react": "16.3.1",
    "react-native": "~0.55.2",
    "react-navigation": "^2.11.2"
  }
}
Nedko Dimitrov
  • 4,350
  • 3
  • 28
  • 30

6 Answers6

268

expo r -c

According to this forum post from an Expo dev, that's the command to start it cache clean

EDIT: They have changed it from exp r -c to expo start -c

Seth Lutske
  • 9,154
  • 5
  • 29
  • 78
Sebastian Berglönn
  • 3,920
  • 2
  • 17
  • 33
49

The command to run is:

expo r -c

Mitchell Fry
  • 605
  • 5
  • 4
7

For Expo 45 and below

expo r -c

For Expo 46 and above

npx expo start --clear
Rahul Dasgupta
  • 463
  • 8
  • 14
  • npm start --reset-cache just gave me the error: There was a problem loading the project. This development build encountered the following error. Value of type java.lang.String cannot be converted to JSONObject. – Fernando Rodrigues Coelho Feb 03 '23 at 17:30
6

In you console run:

expo start 

After the QR code is shown, press SHIFT + R keys.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
4

I was running expo build:ios and needed to clear the cached provisioning profile. I did so with:

expo build:ios --clear-provisioning-profile

To see the full list of commands that clear specific elements from the cache, run expo build:ios --help

duhaime
  • 25,611
  • 17
  • 169
  • 224
0

2023 update

npx eas build -p ios --clear-cache

or

npx eas build -p android --clear-cache
Hugobop
  • 125
  • 10