Node BrowserMob Proxy API
This project provides a NodeJS interface for interacting with a running BrowserMob Proxy through it's REST API. All methods in the REST API are available including JavaScript-based interceptors for requests/responses.
Usage
Installation command is npm install browsermob-proxy-api
Documentation
For the specifics of the REST API used by BrowserMob Proxy, please see their documentation.
Examples
To open a port (10800) and start a new HAR:
var MobProxy = ;var proxy = 'host':'localhost' 'port': '8080'; // start listening on port 10800:proxy;
To get the current HAR from a previously opened port:
proxy;