├── .gitignore ├── README.md ├── adapters └── in-memory.js ├── colors.js ├── data-writers ├── realm-data-writer.js ├── storage-server-hoc-writer.js └── stringify-data-writer.js ├── debug-list-view.js ├── debug-service.js ├── debug-view.js ├── guid.js ├── index.js ├── package.json └── timers.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/README.md -------------------------------------------------------------------------------- /adapters/in-memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/adapters/in-memory.js -------------------------------------------------------------------------------- /colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/colors.js -------------------------------------------------------------------------------- /data-writers/realm-data-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/data-writers/realm-data-writer.js -------------------------------------------------------------------------------- /data-writers/storage-server-hoc-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/data-writers/storage-server-hoc-writer.js -------------------------------------------------------------------------------- /data-writers/stringify-data-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/data-writers/stringify-data-writer.js -------------------------------------------------------------------------------- /debug-list-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/debug-list-view.js -------------------------------------------------------------------------------- /debug-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/debug-service.js -------------------------------------------------------------------------------- /debug-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/debug-view.js -------------------------------------------------------------------------------- /guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/guid.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/package.json -------------------------------------------------------------------------------- /timers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olofd/react-native-device-log/HEAD/timers.js --------------------------------------------------------------------------------