Questions tagged [react-native-debugger]

The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools.

The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools

114 questions
1
vote
1 answer

Expo JS debugger connects to chrome instead of React Native Debugger

Problem Starting JS debugging from Expo Go doesn't connect to React Native Debugger, but opens a separate dev tools window instead on Windows 11. Full description I start React Native Debugger (.exe file, v0.13.0), adjust the port to mach expo…
Ylor
  • 693
  • 1
  • 5
  • 10
1
vote
1 answer

React Native Debugger - how to inspect element in the debugger

In my React Native Debugger, I can't inspect element. When I right click in React Native Debugger -> Toggle Element Inspector, I can only toggle the element inspector in the emulator. According to this video, I should be able to inspect the element…
CCCC
  • 5,665
  • 4
  • 41
  • 88
1
vote
1 answer

How can I make a chain of HoC appear as a single component in React DevTools?

I'd like to have my HoCs do as little as possible for what they need. (e.g. withI18n, withStyled, withNativeFontFamily) So if I had something like const MyText = withI18n(withStyled(withNativeFontFamily(Text))); I'd like to show in React DevTools…
1
vote
0 answers

react-native-debugger not connecting to application while running

I have a react mobile application running on EXPO and am currently testing on my android mobile device. I've installed the React-Native-Debugger and have it running on port 19001. After shaking my device and turning on JS debugging, I see no change…
1
vote
1 answer

Can you turn off yellow warnings in React Native Debugger?

I'm using React Native Debugger 0.13.0. Is it possible to turn off the yellow warning messages? I know how to do it in React Native itself, but not in the debugger.
gkeenley
  • 6,088
  • 8
  • 54
  • 129
1
vote
0 answers

Is performance debugging in React Native using React Dev Tools Profiler valid since it requires DEV mode === true?

In the React Native profiling docs it says: make sure that Development Mode is OFF! JavaScript thread performance suffers greatly when running in dev mode. This is unavoidable: a lot more work needs to be done at runtime to provide you with good…
1
vote
0 answers

Unable to connect react-native debugger in Ubuntu(22.04)

I am trying to install react native debugger(version 0.12.1) in ubuntu. The error message was as displayed in this screenshot on first launch. However, even after installing react-devtools ^4.22.0 globally , it continues to display the same error…
Kanhaiya
  • 359
  • 2
  • 11
1
vote
1 answer

DevTools Bug: Cannot add node "1" because a node with that id is already in the Store

I am using React native debugger tool in the expo-based react native project. I am getting the below error when running the debugger and when I dismiss the error I see the following screen To fix the above issue, I have added react-devtools:…
Sumit Surana
  • 1,554
  • 2
  • 14
  • 28
1
vote
1 answer

React Native Debugger uses wrong version of react-devtools

Trying to debug apps with React Native Debugger. Shows "Unsupported DevTools backend version". How I got here I created a new app using expo init (expo-cli@5.2.0) with TypeScript blank template. Started app with expo ios, opened 'Debug Remote JS' I…
1
vote
1 answer

How do I choose a default React Native debugging tool when I `Open the Dev Tools`

I am using both the Flipper and React Native Debugger on a React Native project. I find JavaScript logging by React Native Debugger to be much richer given JSON formatting than Flipper (logs dumped as serialized strings). I however love the…
iamcastelli
  • 1,564
  • 2
  • 20
  • 30
1
vote
2 answers

Flipper plugins not working with react-native app

I have react-native application in which I am using port 8383 port (I CAN NOT use default port 8081) for metro bundler. While debugging app with Flipper it's showing most of the plugins like Hermes/react dev-tool etc are not available.After reading…
1
vote
0 answers

How to exclude JavaScript code in node_module when using Reactive Native Debugger

I am new to React-Native development. I found out two issues that are related to debugging react-native code with React Native Debugger Tools. The source code to be debugged is not organized in a folder structure, instead, The source code is listed…
Bo Huang
  • 365
  • 5
  • 14
1
vote
0 answers

React Native debugger with device on VPN

My application on Android relies on VPN connection, hence I can't enter "React Native Debug" after connecting device with VPN. Things I have tried: (but failed) Without VPN established, I can always debug or reload my application Tried vice versa…
Tommy Leong
  • 2,509
  • 6
  • 30
  • 54
1
vote
0 answers

Why does this request only work if I have the react-native-debugger running?

I have a very strange problem: I am sending an axios request to my local computer in my React Native app. This is the code for the request: const client = axios.create({ baseURL: 'https://192.168.178.20:5000/', headers: { …
1
vote
1 answer

Where does the react_native_debugger-setup.exe install the React Native Debugger?

I'm not sure if I understood it correctly...The react_native_debugger-setup.exe from here is installing the React Native Debugger as a program on my computer, right? Until now I always ran the setup file if I wanted to start the debugger. But I…
Christoph Hummler
  • 971
  • 2
  • 7
  • 20