JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 44717
  • Score
    100M100P100Q151975F
  • License MIT

An HTTP traffic monitor for React Native with zero dependencies

Package Exports

  • react-native-network-logger

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-network-logger) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-native-network-logger

An HTTP traffic monitor for React Native An alternative to Wormholy but for iOS and Android and with zero native dependencies

Start Logging

Call startNetworkLogging in your apps entry point to log every request, or call it on a button press to manually trigger it.

import { startNetworkLogging } from 'react-native-network-logger';

startNetworkLogging();
AppRegistry.registerComponent('App', () => App);

Display Requests and Responses

import NetworkLogger from 'react-native-network-logger';

render() {
    return(<NetworkLogger/>)
}