A simple HTTP proxy server which lets you modify user responses. A future addition will be support for HTTPS.
Getting up and running is as simple as installing application dependencies and starting up a local development server.
$ npm install
$ npm run setup$ npm startThe project offers the following default config:
{
"proxySettings": {
"port": "7777",
"headersFolderLocation": "./headers",
"userResponseHeadersFile": "userResponseHeaders.json",
"debug": false
}
}To override these values create a config.json in your root folder, similar to sample-config.json.
The headersFolderLocation (mandatory) is relative to the root folder and userResponseHeadersFile (mandatory) name of the header file in this folder.