Package Exports
- curlrequest
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (curlrequest) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
curlrequest is a node wrapper for the command line curl(1)
$ npm install curlrequestWhy?
- Curl is mature, stable, and fast
- More features than any of the node.js request libraries
- Separate requests/processes take advantage of all CPUs
- Spawning processes is relatively cheap and still non-blocking
- Better control over request timeouts. If a request has hung just kill the process
Usage
Make a request with curl - callback receives (stderr, stdout) on request
completion
curl.request(options, callback)Note that you can also call curl.request(url, callback) which is
shorthand for curl.request({ url: url }, callback).
To setup default options and return a function that can be used later
var request = curl.request(default_options)
request([options ,] callback)Options
url
The request url.
encoding - default: utf8
Encode the response body as either utf or ascii. Set to null return a
buffer.
headers - default: {}
Set request headers, e.g. headers: { accept: 'text/*' }
useragent - default:
Set the request user-agent.
location - default: true
Whether to follow 30x redirects or not.
redirects - default: 3
The maximum amount of redirects to follow before failing with "retries".
retries - default: 0
How many times to retry the request in the case of failure.
timeout - default: false
The maximum amount of seconds the request can take before failing with error "timeout".
scope - default: {}
The scope to call the callback in.
require - default: null
Pass a string or regular expression to search for in the response body. If there's no match, fail the request with "required string not found". You can also pass an array of strings / regexps to search for where only one has to match.
process - default: false
Pass in a function which modifies the response body before sending it to the callback. Useful if you need to modify the response in some way before a higher level library has the chance to modify it.
Passing options directly to curl
Any additional options are sent as command line options to curl. See man curl or curl --manual for a detailed description of options and usage.
Example 1. Include response headers in the output
var options = { url: 'google.com', include: true }
curl.request(options, function (err, parts) {
parts = parts.split('\r\n')
var data = parts.pop()
, head = parts.pop()
})Example 2. Limit the download speed of a transfer
var options = {
url: 'example.com/some/large/file.zip'
, 'limit-rate': '500k' //500kb/s
, encoding: null //return a buffer
}
curl.request(options, function (err, file) {
//...
})