Seth Holladay
Seth Holladay
Hi! I love that this project exists. Thanks for your hard work. :) I am having trouble installing Node. Although the error doesn't seem specific to the formula, I cannot...
I want to achieve the following command line using this project: ``` bash convert input.png -negate output.png ``` Presumably something like: ``` js const fs = require('fs'); const imagemagick =...
### Current behavior: Cypress uses global variables: `describe`, `it`, etc. This is implicit and makes it unclear where they are coming from. Linters also don't like it and for good...
This is more of a question than a bug report. Maybe it is a feature request. When the target URL (my term for "the server on the other side") points...
If I so much as `require('hoxy')`, Node will never exit. This is problematic for the end-user. They go to Control-C on my server and it never dies, as I [trap...
Using a minimal forward proxy set up, I am able to reliably reproduce a parsing exception by visiting some HTTPS sites. These are **okay** / do not crash: - https://twitter.com/...
I have the need to access data (at the moment, only the headers) of the **original** incoming request, as it was before hoxy modifies it for sending, from within a...
Using this proxy, the contents of `http://example.com` will show up in your browser, instead of `http://tired.com`. ``` javascript 'use strict'; process.on('unhandledRejection', (err) => { throw err; }); const proxy =...
I haven't yet been able to figure out why this happens, so help would be appreciated. Spinning up and using a barebones proxy (as well as my real-world app), this...
Having [url](http://greim.github.io/hoxy/#request-url) and [fullUrl](http://greim.github.io/hoxy/#request-fullUrl) is an odd concept to me. It seems like a wart in Hoxy's otherwise excellent semantics. I find myself explaining it in code comments. Would you...