Hi! I'm trying Reactotron with a CRNA app, and it doesn't connect.Reactotron shows "port 9090" while the usual debugger port is 19001. Is this the problem? How can I change Reactotron to use a different port?
Currently there's no config support for swapping the port. Reactotron isn't a debugger like chrome though, so it shouldn't use the same port. I think you'd only really need to change it if the 9090 conflicted with another program.
If you can't connect and you're using a device, you'll likely want to change the .connect({ host: "192.168.x.x" }) to point to your proper IP address on your local network.
I'm not familiar with how CRNA does it... i think it's the same as Expo.
Seems like this PR would solve your issue:
https://github.com/infinitered/reactotron/pull/946
:tada: This issue has been resolved in version 2.10.0 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Most helpful comment
Currently there's no config support for swapping the port. Reactotron isn't a debugger like chrome though, so it shouldn't use the same port. I think you'd only really need to change it if the
9090conflicted with another program.If you can't connect and you're using a device, you'll likely want to change the
.connect({ host: "192.168.x.x" })to point to your proper IP address on your local network.I'm not familiar with how CRNA does it... i think it's the same as Expo.