needle icon indicating copy to clipboard operation
needle copied to clipboard

Nimble, streamable HTTP client for Node.js. With proxy, iconv, cookie, deflate & multipart support.

Results 86 needle issues
Sort by recently updated
recently updated
newest added

## Issue I am currently trying to send a post request to an endpoint using needle. When I try to append the cookies to the request it sends the cookies...

Hi @tomas, Please always tag the latest NPM version in this repository. I am trying to pack this module to Debian. Without tagging the new version in this repository, it...

This doc describes that `complete` property can be used to check if entire message was downloaded: https://nodejs.org/api/http.html#http_message_complete Won't this check be helpful especially when `transfer-encoding: chunked` is used by server?

`const result = await needle("get", `${url}`, { method: "GET", headers: defaultHeaders, follow_set_cookies: true, follow_max: 10, }); console.log(result.url);` 1. URL actually redirects 3 times. 2. After redirect, `result.url` is empty and...

Hi, not sure if it's a bug or me not using the library properly. I have this quick demo: https://runkit.com/suprmax/5fc78c9c251bb3001a7d3555 ``` const needle = require('needle'); const url = 'http://www.mein-contipark.de'; let...

Little background first, I'm using node version 14.15.1, I'm trying to make a POST REST call to youtubes api using https. the request comes from needle and goes to the...

I've got a needle request to a service that sometimes takes a long time to respond, occasionally exceeding the open_timeout limit of 10 seconds. However, when it does so, no...

Function done takes 2 parameters, but is called [here](https://github.com/tomas/needle/blob/master/lib/needle.js#L716) with 3 arguments. The extra arguments will be ignored. Should we create a PR to fix this?

Strange error on OSX (catalina) using the twitter api example [here] (https://github.com/twitterdev/Twitter-API-v2-sample-code/blob/master/Filtered-Stream/filtered_stream.js) The first time I run the script, things work as expected. After quitting (via Ctrl-C) and restarting, I...

Frequently authentication needs to be configured outside the code. Quite standard approach in Unix world is to store those credentials in ~/.netrc and this is widely supported in HTTP clients,...