node-get
is a slightly higher-level HTTP client for nodejs.
npm install node-get
node-get has no dependencies.
- Redirect following.
- Convenience functions for downloading and getting data as string.
- Binary-extension and basic binary detection.
- Configurable headers
Downloads are objects in node-get
.
var dl = new get({ uri: 'http://google.com/' });
The get constructor can also take a plain string if you don't want to give options.
var dl = new get('http://google.com/');
It can also take other options.
var dl = new get({
uri: 'http://google.com/',
max_redirs: 20,
});
Then it exposes two big methods
dl.asString(function(err, str) {
console.log(str);
});
and
dl.toDisk('myfile.txt', function(err) {
console.log(err);
});
There's also a lower-level API.
dl.perform(function(err, response, encoding) {
// response is just a response object, just like
// HTTP request, except handling redirects
});
If you give node-get an object of settings instead of a string, it accepts
uri
- the address of the resourceheaders
- to replace its default headers with custom onesmax_redirs
- the number of redirects to follow before returning an error
var get = require('node-get');
var download = new get('http://google.com/');
download.asString(console.log);
node-get includes a binary, node-get-file.js
, which downloads
files either to the filesystem or to stdout.
max_redirs
,headers
options in node-get constructor- The API changes in 0.1.x - Get should never be expected to throw an exception.
- Handling of invalid URLs on redirect.
- Handling of file-level errors.
- Handling of DNS-level exceptions.
- Enhanced URL validation.
- Retries
- Tested HTTPS
- Guessing encoding wth headers
- User-customizable encodings
- Tom MacWright (tmcw)