Hi guys. I've been trying to use RND with expo for some time and have been running into a few problems. i've been following these posts
https://www.gravitywell.co.uk/latest/rd/posts/react-native-debugger-expo-awesome/
https://github.com/jhen0409/react-native-debugger/issues/84
Major problem i've been running into is that whenever I try to run anything CLI related I get the following
This is the command I typically run
rndebugger://set-debugger-loc?host=localhost&port=19001
[1] 7146
zsh: no such file or directory: rndebugger://set-debugger-loc?host=localhost
[1] + 7146 exit 127 rndebugger://set-debugger-loc?host=localhost
React Native Debugger app version: 0.7.7
React Native version: https://github.com/expo/react-native/archive/sdk-20.0.0.tar.gz
Platform: Android
Is real device of platform: [Yes or No] No. Genymotion/Expo
Operating System: macOS
any help would be greatly appreciated. Thanks!
The command should be open rndebugger://set-debugger-loc?host=localhost&port=19001, you're missing open so it causes no such file or directory error.
Also, you could type Command+T to new debugger window and specify the Expo packager port (documentation), or use npm package (see doucmentation and examples).
Right on man! Thank you so much.
Most helpful comment
Also, you could type
Command+Tto new debugger window and specify the Expo packager port (documentation), or use npm package (see doucmentation and examples).