UNPKG

6.33 kBMarkdownView Raw
1# Request -- Simplified HTTP request method
2
3## Install
4
5<pre>
6 npm install request
7</pre>
8
9Or from source:
10
11<pre>
12 git clone git://github.com/mikeal/request.git
13 cd request
14 npm link
15</pre>
16
17## Super simple to use
18
19Request is designed to be the simplest way possible to make http calls. It support HTTPS and follows redirects by default.
20
21```javascript
22var request = require('request');
23request('http://www.google.com', function (error, response, body) {
24 if (!error && response.statusCode == 200) {
25 console.log(body) // Print the google web page.
26 }
27})
28```
29
30## Streaming
31
32You can stream any response to a file stream.
33
34```javascript
35request('http://google.com/doodle.png').pipe(fs.createWriteStream('doodle.png'))
36```
37
38You can also stream a file to a PUT or POST request. This method will also check the file extension against a mapping of file extensions to content-types, in this case `application/json`, and use the proper content-type in the PUT request if one is not already provided in the headers.
39
40```javascript
41fs.readStream('file.json').pipe(request.put('http://mysite.com/obj.json'))
42```
43
44Request can also pipe to itself. When doing so the content-type and content-length will be preserved in the PUT headers.
45
46```javascript
47request.get('http://google.com/img.png').pipe(request.put('http://mysite.com/img.png'))
48```
49
50Now let's get fancy.
51
52```javascript
53http.createServer(function (req, resp) {
54 if (req.url === '/doodle.png') {
55 if (req.method === 'PUT') {
56 req.pipe(request.put('http://mysite.com/doodle.png'))
57 } else if (req.method === 'GET' || req.method === 'HEAD') {
58 request.get('http://mysite.com/doodle.png').pipe(resp)
59 }
60 }
61})
62```
63
64You can also pipe() from a http.ServerRequest instance and to a http.ServerResponse instance. The HTTP method and headers will be sent as well as the entity-body data. Which means that, if you don't really care about security, you can do:
65
66```javascript
67http.createServer(function (req, resp) {
68 if (req.url === '/doodle.png') {
69 var x = request('http://mysite.com/doodle.png')
70 req.pipe(x)
71 x.pipe(resp)
72 }
73})
74```
75
76And since pipe() returns the destination stream in node 0.5.x you can do one line proxying :)
77
78```javascript
79req.pipe(request('http://mysite.com/doodle.png')).pipe(resp)
80```
81
82Also, none of this new functionality conflicts with requests previous features, it just expands them.
83
84```javascript
85var r = request.defaults({'proxy':'http://localproxy.com'})
86
87http.createServer(function (req, resp) {
88 if (req.url === '/doodle.png') {
89 r.get('http://google.com/doodle.png').pipe(resp)
90 }
91})
92```
93
94You can still use intermediate proxies, the requests will still follow HTTP forwards, etc.
95
96### request(options, callback)
97
98The first argument can be either a url or an options object. The only required option is uri, all others are optional.
99
100* `uri` || `url` - fully qualified uri or a parsed url object from url.parse()
101* `method` - http method, defaults to GET
102* `headers` - http headers, defaults to {}
103* `body` - entity body for POST and PUT requests. Must be buffer or string.
104* `json` - sets `body` but to JSON representation of value and adds `Content-type: application/json` header.
105* `multipart` - (experimental) array of objects which contains their own headers and `body` attribute. Sends `multipart/related` request. See example below.
106* `followRedirect` - follow HTTP 3xx responses as redirects. defaults to true.
107* `maxRedirects` - the maximum number of redirects to follow, defaults to 10.
108* `onResponse` - If true the callback will be fired on the "response" event instead of "end". If a function it will be called on "response" and not effect the regular semantics of the main callback on "end".
109* `encoding` - Encoding to be used on response.setEncoding when buffering the response data.
110* `pool` - A hash object containing the agents for these requests. If omitted this request will use the global pool which is set to node's default maxSockets.
111* `pool.maxSockets` - Integer containing the maximum amount of sockets in the pool.
112* `timeout` - Integer containing the number of milliseconds to wait for a request to respond before aborting the request
113* `proxy` - An HTTP proxy to be used. Support proxy Auth with Basic Auth the same way it's supported with the `url` parameter by embedding the auth info in the uri.
114* `strictSSL` - Set to `true` to require that SSL certificates be valid. Note: to use your own certificate authority, you need to specify an agent that was created with that ca as an option.
115
116
117The callback argument gets 3 arguments. The first is an error when applicable (usually from the http.Client option not the http.ClientRequest object). The second in an http.ClientResponse object. The third is the response body buffer.
118
119## Convenience methods
120
121There are also shorthand methods for different HTTP METHODs and some other conveniences.
122
123### request.defaults(options)
124
125This method returns a wrapper around the normal request API that defaults to whatever options you pass in to it.
126
127### request.put
128
129Same as request() but defaults to `method: "PUT"`.
130
131```javascript
132request.put(url)
133```
134
135### request.post
136
137Same as request() but defaults to `method: "POST"`.
138
139```javascript
140request.post(url)
141```
142
143### request.head
144
145Same as request() but defaults to `method: "HEAD"`.
146
147```javascript
148request.head(url)
149```
150
151### request.del
152
153Same as request() but defaults to `method: "DELETE"`.
154
155```javascript
156request.del(url)
157```
158
159### request.get
160
161Alias to normal request method for uniformity.
162
163```javascript
164request.get(url)
165```
166
167
168## Examples:
169
170```javascript
171 var request = require('request')
172 , rand = Math.floor(Math.random()*100000000).toString()
173 ;
174 request(
175 { method: 'PUT'
176 , uri: 'http://mikeal.couchone.com/testjs/' + rand
177 , multipart:
178 [ { 'content-type': 'application/json'
179 , body: JSON.stringify({foo: 'bar', _attachments: {'message.txt': {follows: true, length: 18, 'content_type': 'text/plain' }}})
180 }
181 , { body: 'I am an attachment' }
182 ]
183 }
184 , function (error, response, body) {
185 if(response.statusCode == 201){
186 console.log('document saved as: http://mikeal.couchone.com/testjs/'+ rand)
187 } else {
188 console.log('error: '+ response.statusCode)
189 console.log(body)
190 }
191 }
192 )
193```