rn-netwatch
v0.1.0
Published
React Native network request monitoring library with draggable UI
Downloads
13
Maintainers
Readme
rn-netwatch
A React Native library for monitoring network requests in your app with a draggable UI.
Installation
npm install rn-netwatch
# or
yarn add rn-netwatchUsage
import { NetwatchProvider, NetworkLogger } from 'rn-netwatch';
// Wrap your app with the provider
export default function App() {
return (
<NetwatchProvider>
<YourApp />
<NetworkLogger />
</NetwatchProvider>
);
}Features
- Intercepts and logs all network requests
- Draggable floating button UI
- Detailed request and response information
- Filter and search through network logs
- Copy request details for debugging
License
MIT
