Thursday 26 November 2015

Web Debugging Proxy based on Chrome DevTools Network panel.

Betwixt 

This tool will help you analyze web traffic outside the browser using familiar Chrome DevTools interface.
Betwixt in action
This project is in an early stage of development, things may break, values may not be accurate. All contributors are very welcome. See CONTRIBUTING.md fore more details.

How To Use

To clone and run this repository you'll need Git and Node.js 5.x (which comes with npm) installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/kdzwinel/betwixt.git
# Go into the repository
$ cd betwixt
# Install dependencies and run the app
$ npm install && npm start
In order to capture traffic, you'll have to direct it to the proxy created by Betwixt in the background (http://localhost:8008).
If you wish to analyze traffic system wide:
  • on OS X - System Preferences → Network → Advanced → Proxies → Web Proxy (HTTP)
  • on Ubuntu - All Settings → Network → Network Proxy
  • on Windows - PC Settings → Network → Proxy
Setting up proxy on OS X
If you want to capture traffic coming from a single terminal (e.g. wget, npm) use export http_proxy=http://localhost:8008.

No comments:

Post a Comment