react native 网络调试工具reactotron

  1. 下载工具包
    地址:https://github.com/infinitered/reactotron/releases/tag/v3.0.0-beta.9
  1. 安装依赖
npm i --save-dev reactotron-react-native
  1. 在项目目录下创建ReactotronConfig.js 文件,并且将以下代码粘贴进去:
import Reactotron from 'reactotron-react-native'
Reactotron
 .configure() // controls connection & communication settings
 .useReactNative() // add all built-in react native plugins
 .connect() // let's connect!
  1. 在App.js或者index.js中引入ReactotronConfig.js,添加以下代码:
//注意此处文件路径改为自己项目中的相对路径
if(__DEV__) {
  import('./ReactotronConfig').then(() => console.log('Reactotron Configured'))
}
  1. 现在便可以进行相关网络请求的调试;注意:其默认监听的端口为9090,确保其没有被占用的情况下使用;并且如果是用真机调试,请开启9090连接:
adb reverse tcp:9090 tcp:9090
  1. 连接成功:


    image.png

你可能感兴趣的:(react native 网络调试工具reactotron)