0.62 Fast Refresh doesn't work
See original GitHub issueI used this command
npx react-native run-ios
When I run react-native and I edit some codes, fast refresh doesn’t work. instead, I can see downloading javascript bundle.
please check this issue!
Issue Analytics
- State:
- Created 3 years ago
- Reactions:14
- Comments:34
Top Results From Across the Web
Fast refresh and more on Windows with 0.62 release React ...
React Native for Windows released latest stable 0.62.2 with Fast Refresh, RTL support, RedBox and thread safe property storage APIs.
Read more >Fast refresh is taking longer than complete refresh of mater...
The "fast" is a misnomer if ever there were one. A complete refresh works by o truncate o insert /*+ append */ the...
Read more >Fast refresh that was introduced in React Native 0.61 doesn't ...
Developing for android, on windows 10 with genymotion. Fast Refresh is turned on, but it doesn't seem to work, for example, when: I...
Read more >Debugging - React Native
Fast Refresh is a React Native feature that allows you to get ... Note: the React Developer Tools Chrome extension does not work...
Read more >React Native releases update 0.62 with Flipper debugging ...
While 0.61 was working toward fixing the use frameworks error and rolling out the Fast Refresh, update 0.62 comes with major feature ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
For me the solution was
rm -rf .git/index.lock
I was finally able to get at least regular reload working by running bundler with
sudo
option in a separate terminal window like this:sudo npx react-native start --reset-cache
and then running either...run-android
or...run-ios
in another terminal windowWhy did this issue occur only on my machine is still a mystery (tried running project on couple of other Macs and everything was fine).