# React Native Debug Console [![Maintainability](https://api.codeclimate.com/v1/badges/649636926c23c40f2404/maintainability)](https://codeclimate.com/github/morten-olsen/react-native-debug-console/maintainability) ... and yes I am aware that it is a boring name React Native Debug Console is an easy to use network and console debug component and modal for react native, written purely in JavaScript [[demo]](https://snack.expo.io/@mortenolsen/react-native-debug-console) ## Installation ``` npm install react-native-debug-console ``` ## Usage In order to redirect console logs and network logs to the console, these has to be attached ```javascript import { DevTool, DevToolModal, log, network, show, } from 'react-native-debug-console'; network.attach(); log.attach(); ``` Be aware that this stops logs to be output to the regular console. If that is needed, attach it as `log.attach(true)` `react-native-debug-console` can be used either as a modal, or as a standard component, which can be placed anywhere in you application ```javascript const AppWithModal = () => (