make-fetch-happen icon indicating copy to clipboard operation
make-fetch-happen copied to clipboard

Get in loser, we're making requests!

Results 36 make-fetch-happen issues
Sort by recently updated
recently updated
newest added

https://npmjs.com/advisories/1184 There is a machine in the middle attack possible with version 2.2.1 of https-proxy-agent. Please upgrade to the current version.

See: https://github.com/nodejs/node/issues/29364 Steps to reproduce (from a docker that repeatedly fails): ``` ENV NODE_VERSION 12.11.0 && set -x \ && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \ && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc"...

Hey-o! Thanks for the amazing library 🎉👏 I was wondering if you would be open to an idea of making it possible to configure the retry strategy through some kind...

When making some tests with make-fetch-happen I faced the following problem: ``` SyntaxError: Unexpected token N in JSON at position 4 while parsing near '404 Not Found' at JSON.parse ()...

Along the lines of "features node-fetch doesn't intend to include" would be support for fetching from unix sockets. For the URL format, one option is to support the same format...

fix(agent-base): bump dependencies to bring in changes that close connections from agent-base. Also committed audit fixes.

It's difficult for me to find out whether or not make-fetch-happen (and by extension npm) fully supports SOCKS proxies (esp. 5 and 5h). `socks5h://` would be great, so that DNS...

#8 was done because of the massive deps that were getting included with pac-resolver. This [was apparently fixed](https://github.com/zkat/make-fetch-happen/issues/29#issuecomment-306962308)!, which means we can take out the m-f-h-side logic for this and...

enhancement
help wanted

There are many reports on the lack-lustre security of many ciphers used as the default in this library. SSLv3 has been proven to be insecure. We should add support for...

The documentation states > fetch(uriOrRequest, [opts]) -> Promise However using a `Request` instance results in an error. ``` ➜ node > const fetch = require('make-fetch-happen'); undefined > const Request =...