diff --git a/README.md b/README.md new file mode 100644 index 0000000..5cf31d7 --- /dev/null +++ b/README.md @@ -0,0 +1,57 @@ +# React Native Debug Console + +A network and console debug component and modal for `react native` purely in JavaScript + +[[demo]](https://expo.io/@mortenolsen/demo) + +![screen](docs/assets/screen1.png) + +## Installation + +``` +npm install react-native-debug-console +``` + +## Usage + +It comes as a ready to use modal, as well as a standalone component + +```javascript +import { + DevToolModal, + log, + network, + show, +} from 'react-native-debug-console'; + +network.attach(); +log.attach(); + +const App = () => ( + + + +