Enabling Network Targets
- Go to View → Devices → Enable Network Targets
- Network targets will appear in the sidebar under “Network Targets”
localhost:9222.
Configuring Endpoints
You can configure custom endpoints by editing your Inspect config file:| Platform | Config file location |
|---|---|
| macOS | ~/.inspect/config.json |
| Windows | %USERPROFILE%\.inspect\config.json |
Starting Debug Targets
Chrome / Chromium
Start Chrome with remote debugging enabled:Node.js
Start your Node.js application with the inspector:Electron
Start your Electron app with remote debugging:Context Menu Options
Right-click on targets in the sidebar for additional options:- Reload - Refresh the active page
- Bring to focus - Activate the tab in the browser
- Close tab - Close the browser tab
- Open new tab - Open a new tab (right-click on the app name)
Troubleshooting
Target not appearing?
- Verify the application is running with debugging enabled
- Check the port number matches your config
- Ensure no firewall is blocking the connection
Connection refused?
The debug port may be bound to localhost only. For remote debugging, start Chrome with:Binding to
0.0.0.0 exposes the debug port to your network. Only do this on trusted networks.