Network traffic logger for React Native.
Includes an interface to see http traffic from RN and native side
- Log network requests coming from React Native side
- Log network requests coming from the native side (iOS and Android) (optional)
- Log Redux actions (optional)
- Shake the device to display the tool
- View details of each request/action
- Generate and share the list of requests/actions in Excel (XLSX) file
- Log connectivity change
- Show stats between success/warning/failure requests
To avoid to have too much dependencies and conflict versions, before install, you must have these dependancies in your react-native project.
- react-native-paper
- react-native-fs
- react-native-share
- @react-native-community/netinfo
- react-native-launch-arguments
Netwatch has react-native-vector-icons as dependency. Be sure that you have these fonts installed in your project:
- Fontisto
- Feather
- MaterialCommunityIcons
Please refer to this page for more details: Install fonts react-native-vector-icons
yarn add react-native-netwatch
or
npm install react-native-netwatch
Inside your project, go to ios directory and execute pod install
cd ios && pod install && ..
OR simply
npx pod-install
If you want add Network traffic in your project, just import 'react-native-netwatch'
and add the Netwatch component in the most higher position in the tree of components.
For example, just after your store provider or your root component
Now, when you will launch your application and shake the device, it will display automatically Netwatch.
You have two possibilities to activate Netwatch in your project. With a button from you app or by shaking your phone. If you want activate Netwatch with a button from your app, you must disable shake and instead pass the props onPressClose and visible.
import { Netwatch } from 'react-native-netwatch';
const App = () => {
const [netwatchVisible, setNetwatchVisible] = useState(false);
return (
<Provider store={store}>
<Netwatch
enabled={true}
interceptIOS={true}
/>
<AppNavigator />
</Provider>
);
};
export default App;
import { Netwatch } from 'react-native-netwatch';
const App = () => {
const [netwatchVisible, setNetwatchVisible] = useState(false);
return (
<Provider store={store}>
<Netwatch
enabled={true}
interceptIOS={true}
visible={netwatchVisible}
onPressClose={() => setNetwatchVisible(false)}
disableShake
/>
<TouchableHighlight
style={styles.openButton}
onPress={() => setNetwatchVisible(true)}
testID="buttonDisplayNetwatch"
>
<Text style={styles.textStyle}>Display Netwatch</Text>
</TouchableHighlight>
<AppNavigator />
</Provider>
);
};
export default App;
You can add 'react-native-netwatch' as a middleware to catch Redux actions
To do that, just import reduxLogger from 'react-native-netwatch'
import { applyMiddleware, combineReducers, compose, createStore } from 'redux';
import appActionsReducer from './reducers/appActionsReducer';
import { reduxLogger } from 'react-native-netwatch';
const createReducer = () => (state, action) =>
combineReducers({
app: appActionsReducer,
})(state, action);
const store = createStore(
createReducer(),
compose(applyMiddleware(reduxLogger)),
);
export default store;
Example in our demo application here
To be able to intercept requests from Android side and display them into Netwatch
You have to add to your OkHttp client Netwatch interceptor
okHttpClient.addInterceptor(new NetwatchInterceptor(context));
Example in our demo application here
Nothing to do on native side for the iOS.
You have just to set interceptIOS
to true and it will intercept requests which use URLProtocol
on native side and display them into Netwatch
- To intercept request sent with Alamofire
'Bridging-Header.h'
#import <NetwatchInterceptor.h>
let configuration = URLSessionConfiguration.default
configuration.protocolClasses?.insert(NetwatchInterceptor.self, at: 0)
let sessionManager = Alamofire.SessionManager(configuration: configuration)
sessionManager.request(...)
You can have statistics and see how many requests are succeeded or failed. By default, the indicator is closed. If you want the percentage, just press the indactor to opened it. Press again to close.
If you have applied a filter, stats are updated for current filtered view. If you have filtered to see Redux Action, the indicator is not interactive and just show a purple indicator.
If you want, you can add extra datas in the redux items to have more visual information. Instead of just see 'redux action' as label, your own text will be displayed. To do that, you must passed to Netwatch a props called reduxConfig. This is an object where each key correspond to a redux action in your project. All values must be string.
import { Netwatch } from 'react-native-netwatch';
const reduxConfigExample = {
DOWNLOAD_APP_TRANSLATIONS_SUCCESS: "👨 - Extra info",
}
const App = () => {
const [netwatchVisible, setNetwatchVisible] = useState(false);
return (
<Provider store={store}>
<Netwatch
enabled={true}
interceptIOS={true}
reduxConfig={reduxConfigExample}
/>
<AppNavigator />
</Provider>
);
};
export default App;
You will see something like that:
There is a known incompatibility between Netwatch and Reactotron. If you want to redirect the requests into Reactotron, you should set the props useReactotron
to true (have to reload the app if you edit its value). To go back to netwatch revert the props to false and reload again.
At this moment, it is not possible to display requests into Netwatch and Reactotron at the same time. You must choose between these tools.
Params | Type | Default | Mandatory ? | Description |
---|---|---|---|---|
enabled | Boolean | true | yes | Enabled/Disabled logger to intercept request and actions |
visible | Boolean | false | no | Show the main screen to display intercepted requests/actions |
onPressClose | Function | undefined | no | Called when Close button is pressed in the Main screen |
interceptIOS | Boolean | false | no | Intercept native iOS requests |
disableShake | Boolean | false | no | Set to true to disable shake feature to display Netwatch |
maxRequests | Number | 100 | no | Maximum requests displayed |
showStats | Boolean | true | no | Show stats indicator |
reduxConfig | Object | {} | no | Extra infos for Redux Action. Accept only string as vaulues |
useReactotron | Boolean | false | no | Redirect requests to Reactotron instead of Netwatch |
theme | String | 'dark' | no | Possible values are 'dark' or 'light' |
Netwatch also provides a way to mock responses which is useful during testing and development.
Netwatch UI provides a user-friendly way to create, export, and import mocks directly from the mobile application.
To create a mock:
- Open the Netwatch UI by shaking the device or triggering the configured gesture.
- Tap on any HTTP request in the list.
- Tap on the "Mock Request" button.
- Fill in the HTTP method, URL, status code, and response body fields. (leave blank to keep the original value)
- Tap "Save".
To export a mock:
- Open the Netwatch UI.
- Navigate to the "Mock List" screen by tapping top right hamburger menu.
- Tap export button in the navigation bar.
The mock will be copied to the clipboard in a JSON format.
To import a mock:
- Copy the mock JSON to your clipboard.
- Open the Netwatch UI.
- Navigate to the "Mocked List" screen by tapping top right hamburger menu.
- Tap on the "Import" button.
The mock from the clipboard will be parsed and added to the list of mocked requests.
You can easily control which mock responses are active at any time using the Netwatch UI.
To enable a mock:
- Open the Netwatch UI.
- Navigate to the "Mock List" screen by tapping top right hamburger menu.
- Find the mock response you want to enable.
- Tap on the mock response. When the switch is on the right and highlighted, the mock is enabled.
To disable a mock:
- Open the Netwatch UI.
- Navigate to the "Mock List" screen by tapping top right hamburger menu.
- Find the mock response you want to disable.
- Tap on the mock response. When the switch is on the left and grayed out, the mock is disabled.
Netwatch provides three ways to mock responses with presets using props:
- via clipboard (
loadMockPresetFromClipboard
) - via input parameters (
loadMockPresetFromInputParameters
) - via the
mockPresets
prop.
mockPresets
is an array of MockResponse
objects defining the mock HTTP request/response behavior.
const mockResponses = [
{
method: 'GET',
url: '/api/v1/users',
status: 200,
body: { message: 'Success' },
},
];
<Netwatch mockPresets={mockResponses} enabled={true} />;
Copy your mock response data to your clipboard in the correct format and set loadMockPresetFromClipboard
to true
.
Set loadMockPresetFromInputParameters
to true
and pass the mock data as the mockPresets
prop.
Note: If both loadMockPresetFromClipboard
and loadMockPresetFromInputParameters
are true
, the data from the clipboard will be used.
Simulate request timeouts with the timeout
field in MockResponse
.
const mockResponses = [
{
method: 'GET',
url: '/api/v1/users',
status: 200,
body: { message: 'Success' },
timeout: 5, // Simulates a delay of 5 seconds
},
];
<Netwatch mockPresets={mockResponses} enabled={true} />;
Mock HTTP headers with the headers
field in MockResponse
.
const mockResponses = [
{
method: 'GET',
url: '/api/v1/users',
status: 200,
body: { message: 'Success' },
headers: {
'Content-Type': 'application/json',
'X-Custom-Header': 'CustomHeaderValue',
},
},
];
<Netwatch mockPresets={mockResponses} enabled={true} />;
Simulate HTTP error statuses such as 401, 500, and 400.
const mockResponses = [
{
method: 'GET',
url: '/api/v1/secure',
status: 401,
body: { message: 'Unauthorized' },
},
{
method: 'POST',
url: '/api/v1/users',
status: 500,
body: { message: 'Internal Server Error' },
},
{
method: 'POST',
url: '/api/v1/users',
status: 400,
body: { message: 'Bad Request' },
},
];
<Netwatch mockPresets={mockResponses} enabled={true} />;
You can integrate Netwatch with Appium to facilitate your automation testing.
Use Appium's mobile: launchApp
method to start your app with specified parameters:
const mockResponses = [
{
method: 'GET',
url: '/api/v1/users',
status: 200,
body: { message: 'Success' }
}
];
driver.execute('mobile: launchApp', {
sessionId: driver.sessionId,
bundleId: driver.capabilities.bundleId,
arguments: ['-netwatchMocks', JSON.stringify(mockResponses)],
});
Then in your React Native application, set loadMockPresetFromInputParameters
to true
:
<Netwatch enabled={true} loadMockPresetFromInputParameters={true} />
For Android, use Appium's startActivity
method:
const mockResponses = [
{
method: 'GET',
url: '/api/v1/users',
status: 200,
body: { message: 'Success' }
}
];
driver.startActivity(
driver.capabilities.appPackage,
driver.capabilities.appActivity,
undefined,
undefined,
undefined,
undefined,
undefined,
`--es 'netwatchMocks' '${JSON.stringify(mockResponses)}'`
);
Then in your React Native application, set loadMockPresetFromInputParameters
to true
:
<Netwatch enabled={true} loadMockPresetFromInputParameters={true} />