2018-08-16 00:13:06 +02:00
2018-08-16 00:13:06 +02:00
2018-08-16 00:14:25 +02:00
2018-08-14 10:24:19 +02:00
2018-08-14 10:24:19 +02:00
2018-08-14 10:24:19 +02:00
2018-08-16 00:17:27 +02:00
2018-08-14 10:24:19 +02:00

React Native Debug Console

A network and console debug component and modal for react native purely in JavaScript

[demo]

screen

Installation

npm install react-native-debug-console

Usage

It comes as a ready to use modal, as well as a standalone component

import {
  DevToolModal,
  log,
  network,
  show,
} from 'react-native-debug-console';

network.attach();
log.attach();

const App = () => (
  <View>
    <MyOtherContent />
    <DevToolModal />
    <Button
      onPress={show}
    />
  </View>
)
import {
  DevTool,
  log,
  network,
} from 'react-native-debug-console';

network.attach();
log.attach();

const App = () => (
  <View>
    <MyOtherContent />
    <DevTool />
  </View>
)
Description
A network and console debug component and modal for react native purely in JavaScript
Readme 3.3 MiB
Languages
JavaScript 100%