simple-test-proxy is a tiny wrapper for [elazarl/goproxy](https://github.com/elazarl/goproxy). It was created to quickly spin up fast proxies for testing.
npm install simple-test-proxysimple-test-proxy is a tiny wrapper for elazarl/goproxy. It was created to quickly spin up fast proxies for testing.
``js
import { HttpProxy } from 'simple-test-proxy';
const proxy = new HttpProxy('localhost', 8080);
proxy.start();
// Run tests etc.
proxy.stop();
``