Files
react-native-debug-console/README.md
2018-08-16 00:28:16 +02:00

889 B

React Native Debug Console

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

[demo] [snack]

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>
)