Needle

The leanest and most handsome HTTP client in the Nodelands.
var needle = require('needle');
needle.get('http://www.google.com', function(error, response) {
  if (!error && response.statusCode == 200)
    console.log(response.body);
});
Callbacks not floating your boat? Needle got your back.
var data = {
  file: '/home/johnlennon/walrus.png',
  content_type: 'image/png'
};
needle
  .post('https://my.server.com/foo', data, { multipart: true })
  .on('readable', function() {  })
  .on('end', function() {
    console.log('Ready-o, friend-o.');
  })
With only one single dependency, Needle supports:
- HTTP/HTTPS requests, with the usual verbs you would expect
- All of Node's native TLS options, such as 'rejectUnauthorized' (see below)
- Basic & Digest authentication
- Multipart form-data (e.g. file uploads)
- HTTP Proxy forwarding, optionally with authentication
- Streaming gzip or deflate decompression
- Automatic XML & JSON parsing
- 301/302/303 redirect following, with fine-grained tuning, and
- Streaming non-UTF-8 charset decoding, via iconv-lite
And yes, Mr. Wayne, it does come with the latest streams2 support.
This makes Needle an ideal alternative for performing quick HTTP requests in Node, either for API interaction, downloading or uploading streams of data, and so on. If you need OAuth, AWS support or anything fancier, you should check out mikeal's request module.
Install
$ npm install needle
Usage
needle.get('ifconfig.me/all.json', function(error, response) {
  if (!error)
    console.log(response.body.ip_addr); 
});
var out = fs.createWriteStream('logo.png');
needle.get('https://google.com/images/logo.png').pipe(out);
As you can see, you can call Needle with a callback or without it. When passed, the response body will be buffered and written to response.body, and the callback will be fired when all of the data has been collected and processed (e.g. decompressed, decoded and/or parsed).
When no callback is passed, the buffering logic will be skipped but the response stream will still go through Needle's processing pipeline, so you get all the benefits of post-processing while keeping the streamishness we all love from Node.
Response pipeline
Depending on the response's Content-Type, Needle will either attempt to parse JSON or XML streams, or, if a text response was received, will ensure that the final encoding you get is UTF-8. For XML decoding to work, though, you'll need to install the xml2js package as we don't enforce unneeded dependencies unless strictly needed.
You can also request a gzip/deflated response, which, if sent by the server, will be processed before parsing or decoding is performed.
needle.get('http://stackoverflow.com/feeds', { compressed: true }, function(err, resp) {
  console.log(resp.body); 
                          
});
Or in anti-callback mode, using a few other options:
var options = {
  compressed         : true, 
  follow_max         : 5,    
  rejectUnauthorized : true  
}
var stream = needle.get('https://backend.server.com/everything.html', options);
stream.on('readable', function() {
  while (data = this.read()) {
    console.log(data.toString());
  }
})
API
All of Needle's request methods return a Readable stream, and both options and callback are optional. If passed, the callback will return three arguments: error, response and body, which is basically an alias for response.body.
needle.head(url, [options,] callback)
var options = {
  open_timeout: 5000 
}
needle.head('https://my.backend.server.com', function(err, resp) {
  if (err)
    console.log('Shoot! Something is wrong: ' + err.message)
  else
    console.log('Yup, still alive.')
})
needle.get(url, [options,] callback)
needle.get('google.com/search?q=syd+barrett', function(err, resp) {
  
});
needle.post(url, data, [options,] callback)
var options = {
  headers: { 'X-Custom-Header': 'Bumbaway atuna' }
}
needle.post('https://my.app.com/endpoint', 'foo=bar', options, function(err, resp) {
  
});
needle.put(url, data, [options,] callback)
var nested = {
  params: {
    are: {
      also: 'supported'
    }
  }
}
needle.put('https://api.app.com/v2', nested, function(err, resp) {
  console.log('Got ' + resp.bytes + ' bytes.') 
});
needle.patch(url, data, [options,] callback)
Same behaviour as PUT.
needle.delete(url, data, [options,] callback)
var options = {
  username: 'fidelio',
  password: 'x'
}
needle.delete('https://api.app.com/messages/123', null, options, function(err, resp) {
  
});
needle.request(method, url, data, [options,] callback)
Generic request. This not only allows for flexibility, but also lets you perform a GET request with data, in which case will be appended to the request as a query string.
var data = {
  q      : 'a very smart query',
  page   : 2,
  format : 'json'
}
needle.request('get', 'forum.com/search', data, function(err, resp) {
  if (!err && resp.statusCode == 200)
    console.log(resp.body); 
});
More examples after this short break.
Request options
For information about options that've changed, there's always the changelog.
- open_timeout: (or- timeout) Returns error if connection takes longer than X milisecs to establish. Defaults to- 10000(10 secs).- 0means no timeout.
- read_timeout: Returns error if data transfer takes longer than X milisecs, after connection is established. Defaults to- 0(no timeout).
- follow_max: (or- follow) Number of redirects to follow. Defaults to- 0. See below for more redirect options.
- multipart: Enables multipart/form-data encoding. Defaults to- false. Use it when uploading files.
- proxy: Forwards request through HTTP(s) proxy. Eg.- proxy: 'http://user:pass@proxy.server.com:3128'.
- agent: Uses an http.Agent of your choice, instead of the global, default one.
- headers: Object containing custom HTTP headers for request. Overrides defaults described below.
- auth: Determines what to do with provided username/password. Options are- auto,- digestor- basic(default).- autowill detect the type of authentication depending on the response headers.
- json: When- true, sets content type to- application/jsonand sends request body as JSON string, instead of a query string.
Response options
- decode_response: (or- decode) Whether to decode the text responses to UTF-8, if Content-Type header shows a different charset. Defaults to- true.
- parse_response: (or- parse) Whether to parse XML or JSON response bodies automagically. Defaults to- true. You can also set this to 'xml' or 'json' in which case Needle will only parse the response if the content type matches.
- output: Dump response output to file. This occurs after parsing and charset decoding is done.
- parse_cookies: Whether to parse response’s- Set-Cookieheader. Defaults to- true. If parsed, cookies are set on- resp.cookies.
Note: To stay light on dependencies, Needle doesn't include the xml2js module used for XML parsing. To enable it, simply do npm install xml2js.
These are basically shortcuts to the headers option described above.
- cookies: Sets a {key: 'val'} object as a 'Cookie' header.
- compressed: If- true, sets 'Accept-Encoding' header to 'gzip,deflate', and inflates content if zipped. Defaults to- false.
- username: For HTTP basic auth.
- password: For HTTP basic auth. Requires username to be passed, but is optional.
- accept: Sets 'Accept' HTTP header. Defaults to- */*.
- connection: Sets 'Connection' HTTP header. Not set by default, unless running Node < 0.11.4 in which case it defaults to- close. More info about this below.
- user_agent: Sets the 'User-Agent' HTTP header. Defaults to- Needle/{version} (Node.js {node_version}).
Node.js TLS Options
These options are passed directly to https.request if present. Taken from the original documentation:
- pfx: Certificate, Private key and CA certificates to use for SSL.
- key: Private key to use for SSL.
- passphrase: A string of passphrase for the private key or pfx.
- cert: Public x509 certificate to use.
- ca: An authority certificate or array of authority certificates to check the remote host against.
- ciphers: A string describing the ciphers to use or exclude.
- rejectUnauthorized: If true, the server certificate is verified against the list of supplied CAs. An 'error' event is emitted if verification fails. Verification happens at the connection level, before the HTTP request is sent.
- secureProtocol: The SSL method to use, e.g. SSLv3_method to force SSL version 3.
Redirect options
These options only apply if the follow_max (or follow) option is higher than 0.
- follow_set_cookies: Sends the cookies received in the- set-cookieheader as part of the following request.- falseby default.
- follow_set_referer: Sets the 'Referer' header to the requested URI when following a redirect.- falseby default.
- follow_keep_method: If enabled, resends the request using the original verb instead of being rewritten to- getwith no data.- falseby default.
- follow_if_same_host: When true, Needle will only follow redirects that point to the same host as the original request.- falseby default.
- follow_if_same_protocol: When true, Needle will only follow redirects that point to the same protocol as the original request.- falseby default.
Overriding Defaults
Yes sir, we have it. Needle includes a defaults() method, that lets you override some of the defaults for all future requests. Like this:
needle.defaults({
  open_timeout: 60000,
  user_agent: 'MyApp/1.2.3',
  parse_response: false });
This will override Needle's default user agent and 10-second timeout, and disable response parsing, so you don't need to pass those options in every other request.
Unless you're running an old version of Node (< 0.11.4), by default Needle won't set the Connection header on requests, yielding Node's default behaviour of keeping the connection alive with the target server. This speeds up inmensely the process of sending several requests to the same host.
On older versions, however, this has the unwanted behaviour of preventing the runtime from exiting, either because of a bug or 'feature' that was changed on 0.11.4. To overcome this Needle does set the 'Connection' header to 'close' on those versions, however this also means that making new requests to the same host doesn't benefit from Keep-Alive.
So if you're stuck on 0.10 or even lower and want full speed, you can simply set the Connection header to 'Keep-Alive' by using { connection: 'Keep-Alive' }. Please note, though, that an event loop handler will prevent the runtime from exiting so you'll need to manually call process.exit() or the universe will collapse.
Examples Galore
HTTPS GET with Basic Auth
needle.get('https://api.server.com', { username: 'you', password: 'secret' },
  function(err, resp) {
    
});
Or use RFC-1738 basic auth URL syntax:
needle.get('https://username:password@api.server.com', function(err, resp) {
    
});
Digest Auth
needle.get('other.server.com', { username: 'you', password: 'secret', auth: 'digest' },
  function(err, resp, body) {
    
});
var options = {
  compressed : true,
  follow     : 10,
  accept     : 'application/vnd.github.full+json'
}
needle.get('api.github.com/users/tomas', options, function(err, resp, body) {
  
  
});
GET XML object
needle.get('https://news.ycombinator.com/rss', function(err, resp, body) {
  
});
GET binary, output to file
needle.get('http://upload.server.com/tux.png', { output: '/tmp/tux.png' }, function(err, resp, body) {
  
});
GET through proxy
needle.get('http://search.npmjs.org', { proxy: 'http://localhost:1234' }, function(err, resp, body) {
  
});
GET a very large document in a stream (from 0.7+)
var stream = needle.get('http://www.as35662.net/100.log');
stream.on('readable', function() {
  var chunk;
  while (chunk = this.read()) {
    console.log('got data: ', chunk);
  }
});
GET JSON object in a stream (from 0.7+)
var stream = needle.get('http://jsonplaceholder.typicode.com/db', { parse: true });
stream.on('readable', function() {
  var node;
  
  while (node = this.read()) {
    console.log('got data: ', node);
  }
});
GET JSONStream flexible parser with search query (from 0.7+)
 
 
needle.get('http://jsonplaceholder.typicode.com/db', { parse: true })
      .pipe(new JSONStream.parse('posts.*.title'));
      .on('data', function (obj) {
        console.log('got post title: %s', obj);
      });
File upload using multipart, passing file path
var data = {
  foo: 'bar',
  image: { file: '/home/tomas/linux.png', content_type: 'image/png' }
}
needle.post('http://my.other.app.com', data, { multipart: true }, function(err, resp, body) {
  
});
Stream upload, PUT or POST
needle.put('https://api.app.com/v2', fs.createReadStream('myfile.txt'), function(err, resp, body) {
  
});
Multipart POST, passing data buffer
var buffer = fs.readFileSync('/path/to/package.zip');
var data = {
  zip_file: {
    buffer       : buffer,
    filename     : 'mypackage.zip',
    content_type : 'application/octet-stream'
  }
}
needle.post('http://somewhere.com/over/the/rainbow', data, { multipart: true }, function(err, resp, body) {
  
  
  
});
Multipart with custom Content-Type
var data = {
  token: 'verysecret',
  payload: {
    value: JSON.stringify({ title: 'test', version: 1 }),
    content_type: 'application/json'
  }
}
needle.post('http://test.com/', data, { timeout: 5000, multipart: true }, function(err, resp, body) {
  
  
});
For even more examples, check out the examples directory in the repo.
Testing
To run tests, you need to generate a self-signed SSL certificate in the test directory. After cloning the repository, run the following commands:
$ mkdir -p test/keys
$ openssl genrsa -out test/keys/ssl.key 2048
$ openssl req -new -key test/keys/ssl.key -x509 -days 999 -out test/keys/ssl.cert
Then you should be able to run npm test once you have the dependencies in place.
Note: Tests currently only work on linux-based environments that have /proc/self/fd. They do not work on MacOS environments.
You can use Docker to run tests by creating a container and mounting the needle project directory on /app
docker create --name Needle -v /app -w /app -v /app/node_modules -i node:argon
Credits
Written by Tomás Pollak, with the help of contributors.
Copyright
(c) Fork Ltd. Licensed under the MIT license.