2016-10-18 17:14:43 +00:00
|
|
|
# net
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
> Issue HTTP/HTTPS requests.
|
2016-10-18 17:14:43 +00:00
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
The `net` module is a client-side API for issuing HTTP(S) requests. It is similar to the
|
|
|
|
[HTTP](https://nodejs.org/api/http.html) and [HTTPS](https://nodejs.org/api/https.html) modules of Node.js
|
2016-10-19 16:19:28 +00:00
|
|
|
but it uses Chromium native networking library instead of the Node.js implementation offering
|
|
|
|
therefore a much greater support regarding web proxies.
|
2016-10-18 17:14:43 +00:00
|
|
|
|
2016-10-19 16:19:28 +00:00
|
|
|
Following is a non-exhaustive list of why you may consider using the `net` module instead of the native Node.js modules:
|
2016-10-18 17:14:43 +00:00
|
|
|
* Automatic management of system proxy configuration, support of the wpad protocol and proxy pac configuration files.
|
|
|
|
* Automatic tunneling of HTTPS requests.
|
|
|
|
* Support for authenticating proxies using basic, digest, NTLM, Kerberos or negotiate authentication schemes.
|
|
|
|
* Support for traffic monitoring proxies: Fiddler-like proxies used for access control and monitoring.
|
|
|
|
|
2016-10-19 16:19:28 +00:00
|
|
|
The `net` module API has been specifically designed to mimic, as much closely as possible, the familiar Node.js API.
|
|
|
|
The API components including classes, methods, properties and event names are similar to those commonly used in Node.js.
|
|
|
|
|
|
|
|
For instance, the following example quickly shows how the `net` API might be used:
|
2016-10-19 16:05:38 +00:00
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
```javascript
|
|
|
|
const {app} = require('electron')
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
app.on('ready', () => {
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
const {net} = require('electron')
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
const request = net.request('https://github.com')
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
request.on('response', (response) => {
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
console.log(`STATUS: ${response.statusCode}`);
|
|
|
|
console.log(`HEADERS: ${JSON.stringify(response.headers)}`);
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
response.on('data', (chunk) => {
|
|
|
|
console.log(`BODY: ${chunk}`)
|
|
|
|
})
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
response.on('end', () => {
|
|
|
|
console.log('No more data in response.');
|
|
|
|
})
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
})
|
2016-10-19 16:11:07 +00:00
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
request.end()
|
2016-10-18 17:14:43 +00:00
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-10-19 16:19:28 +00:00
|
|
|
By the way, it is almost identical to the way you would normally use the
|
|
|
|
[HTTP](https://nodejs.org/api/http.html)/[HTTPS](https://nodejs.org/api/https.html) modules of Node.js
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
## Methods
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
The `net` module has the following methods:
|
|
|
|
|
|
|
|
### `net.request(options)`
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
* `options`: Object or String - The `ClientRequest` constructor options.
|
2016-10-19 13:34:21 +00:00
|
|
|
|
|
|
|
Returns `ClientRequest`
|
2016-10-18 17:14:43 +00:00
|
|
|
|
2016-10-19 16:19:28 +00:00
|
|
|
Create a `ClientRequest` instance using the provided `options` object which is directly
|
2016-10-19 16:31:08 +00:00
|
|
|
passed to the `ClientRequest` constructor. The `net.request` method would be used to issue
|
|
|
|
both secure and insecure HTTP requests according to the specified protocol scheme in the `options` object.
|
2016-10-19 14:51:44 +00:00
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
## Class: ClientRequest
|
|
|
|
|
2016-10-19 16:31:08 +00:00
|
|
|
`ClientRequest` implements the [Writable Stream](https://nodejs.org/api/stream.html#stream_writable_streams) interface
|
|
|
|
and it is therefore an [EventEmitter](https://nodejs.org/api/events.html#events_class_eventemitter).
|
2016-10-19 14:51:44 +00:00
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
### `new ClientRequest(options)`
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
* `options` Object or String - If `options` is a String, it is interpreted as the request URL.
|
|
|
|
If it is an object, it is expected to fully specify an HTTP request via the following properties:
|
2016-10-19 13:34:21 +00:00
|
|
|
* `method` String (optional) - The HTTP request method. Defaults to the GET method.
|
|
|
|
* `url` String (required) - The request URL. Must be provided in the absolute form with the protocol scheme specified as http or https.
|
|
|
|
* `protocol` String (optional) - The protocol scheme in the form 'scheme:'. Current supported values are 'http:' or 'https:'. Defaults to 'http:'.
|
|
|
|
* `host` String (optional) - The server host provided as a concatenation of a hostname and a port number 'hostname:port'
|
|
|
|
* `hostname` String (optional) - The server host name.
|
|
|
|
* `port` Integer (optional) - The server's listening port number.
|
|
|
|
* `path` String (optional) - The path part of the request URL.
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
`options` properties `protocol`, `host`, `hostname`, `port` and `path` strictly
|
|
|
|
follow the Node.js model as described in the [URL](https://nodejs.org/api/url.html) module.
|
2016-10-19 13:34:21 +00:00
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
### Instance Events
|
|
|
|
|
|
|
|
#### Event: 'response'
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
Returns:
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
* `response` IncomingMessage - An object representing an HTTP response message.
|
2016-10-19 13:34:21 +00:00
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
#### Event: 'login'
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
Returns:
|
|
|
|
|
|
|
|
* `callback` Function
|
|
|
|
|
|
|
|
Emitted when an authenticating proxy is asking for user credentials.
|
|
|
|
|
|
|
|
The `callback` function is expected to be called back with user credentials:
|
|
|
|
|
|
|
|
* `usrename` String
|
|
|
|
* `password` String
|
|
|
|
|
|
|
|
Providing empty credentials will cancel the request.
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
#### Event: 'finish'
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
Emitted just after the last chunk of the `request`'s data has been written into the `request` object.
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
#### Event: 'abort'
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
Emitted when the `request` is aborted. The abort event will not be fired if the `request` is already closed.
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
#### Event: 'error'
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
Returns:
|
|
|
|
|
|
|
|
* `error` Error - an error object providing some information about the failure.
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
Emitted when the `net` module fails to issue a network request. Typically when the `request`
|
|
|
|
object emits an error event, a close event will subsequently follow and no response object will be provided.
|
2016-10-19 13:34:21 +00:00
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
#### Event: 'close'
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
Emitted as the last event in the HTTP request-response transaction. The close event indicates
|
|
|
|
that no more events will be emitted on either the `request` or `response` objects.
|
2016-10-19 13:34:21 +00:00
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
### Instance Properties
|
|
|
|
|
|
|
|
#### `request.chunkedEncoding`
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
A Boolean specifying whether the request will use HTTP chunked transfer encoding or
|
|
|
|
not. Defaults to false. The property is readable and writable,
|
|
|
|
however it can be set only before the first write operation as the HTTP headers are
|
|
|
|
not yet put on the wire. Trying to set the `chunkedEncoding` property
|
2016-10-19 14:51:44 +00:00
|
|
|
after a write will throw an error.
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
Using chunked encoding is strongly recommended if you need to send a large request body as
|
|
|
|
data will be streamed as small chunks instead of being internally buffered
|
2016-10-19 14:51:44 +00:00
|
|
|
in Electron memory.
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
### Instance Methods
|
|
|
|
|
|
|
|
#### `request.setHeader(name, value)`
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
* `name` String - An extra header name.
|
|
|
|
* `value` String - An extra header value.
|
|
|
|
|
|
|
|
Adds an extra HTTP header. The header name will issued as it is without lowercasing.
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
#### `request.getHeader(name)`
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
* `name` String - Specify an extra header name.
|
|
|
|
|
|
|
|
Returns String - The value of a previously set extra header name.
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
#### `request.removeHeader(name)`
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
* `name` String - Specify an extra header name.
|
|
|
|
|
|
|
|
Removes a previously set extra header name.
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
#### `request.write(chunk[, encoding][, callback])`
|
2016-10-19 13:34:21 +00:00
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
* `chunk` String or Buffer - A chunk of the request body' data. If it is a string,
|
|
|
|
it is converted into a Buffer object using the specified encoding.
|
2016-10-19 13:34:21 +00:00
|
|
|
* `encoding` String (optional) - Used to convert string chunks into Buffer objects. Defaults to 'utf-8'.
|
|
|
|
* `callback` Function (optional) - Called after the write operation ends.
|
|
|
|
|
|
|
|
Adds a chunk of data to the request body. Generally, the first write operation causes the request headers to be issued on the wire.
|
|
|
|
After the first write operation, it is not allowed to add or remove a custom header.
|
2016-10-18 17:14:43 +00:00
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
#### `request.end([chunk][, encoding][, callback])`
|
2016-10-19 13:34:21 +00:00
|
|
|
|
|
|
|
* `chunk` String or Buffer (optional)
|
|
|
|
* `encoding` String (optional)
|
|
|
|
* `callback` Function (optional)
|
|
|
|
|
2016-10-19 16:11:07 +00:00
|
|
|
Sends the last chunk of the request data. Subsequent write or end operations will not
|
|
|
|
be allowed. The finish event is emitted just after the end operation.
|
2016-10-18 17:14:43 +00:00
|
|
|
|
|
|
|
#### `request.abort()`
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
Cancels an ongoing HTTP transaction. If the request has already closed, the abort operation will have no effect.
|
|
|
|
Otherwise an ongoing event will emit abort and close events. Additionally, if there is an ongoing response object,
|
|
|
|
it will emit the aborted event.
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
|
|
|
|
## Class: IncomingMessage
|
|
|
|
|
2016-10-19 16:31:08 +00:00
|
|
|
`IncomingMessage` represents an HTTP response message.
|
|
|
|
It is a [Readable Stream](https://nodejs.org/api/stream.html#stream_readable_streams) and therefore
|
|
|
|
an [EventEmitter](https://nodejs.org/api/events.html#events_class_eventemitter).
|
2016-10-19 14:51:44 +00:00
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
### Instance Events
|
|
|
|
|
|
|
|
#### Event 'data'
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
Returns:
|
|
|
|
|
|
|
|
* `chunk`: Buffer - A chunk of response body's data.
|
|
|
|
|
2016-10-19 16:31:08 +00:00
|
|
|
The data event is the usual method of transferring response data into applicative code.
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
#### Event 'end'
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
Indicates that response body has ended.
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
#### Event 'aborted'
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
Emitted when a request has been canceled during an ongoing HTTP transaction.
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
#### Event 'error'
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
Returns
|
|
|
|
|
2016-10-19 16:31:08 +00:00
|
|
|
`error` Error - Typically holds an error string identifying failure root cause.
|
2016-10-19 14:51:44 +00:00
|
|
|
|
2016-10-19 16:31:08 +00:00
|
|
|
Emitted if an error is encountered while streaming response data events. For instance,
|
|
|
|
if the server closes the underlying socket while streaming the response, an error event
|
|
|
|
will be emitted on the response object and a close event will subsequently follow in the request object.
|
2016-10-19 14:51:44 +00:00
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
### Instance properties
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
An `IncomingMessage` instance has the following readable properties:
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
#### `response.statusCode`
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
An Integer indicating the HTTP response status code.
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
#### `response.statusMessage`
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
A String representing the HTTP status message.
|
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
#### `response.headers`
|
|
|
|
|
2016-10-19 16:05:38 +00:00
|
|
|
An Object representing the response HTTP headers. The `headers` object is formatted as follows:
|
|
|
|
|
|
|
|
* All header names are lowercased.
|
|
|
|
* Each header name produces an array-valued property on the headers object.
|
|
|
|
* Each header value is pushed into the array associated with its header name.
|
2016-10-19 14:51:44 +00:00
|
|
|
|
2016-10-19 13:34:21 +00:00
|
|
|
#### `response.httpVersion`
|
|
|
|
|
2016-10-19 14:51:44 +00:00
|
|
|
A String indicating the HTTP protocol version number. Typical values are '1.0' or '1.1'. Additionally `httpVersionMajor` and
|
|
|
|
`httpVersionMinor` are two Integer-valued readable properties that return respectively the HTTP major and minor version numbers.
|
2016-10-19 13:34:21 +00:00
|
|
|
|
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|