2016-10-18 17:14:43 +00:00
|
|
|
# net
|
|
|
|
|
2016-10-31 22:48:06 +00:00
|
|
|
> Issue HTTP/HTTPS requests using Chromium's native networking library
|
2016-10-18 17:14:43 +00:00
|
|
|
|
2016-11-23 19:20:56 +00:00
|
|
|
Process: [Main](../glossary.md#main-process)
|
2016-11-03 17:26:00 +00:00
|
|
|
|
2016-10-20 10:30:03 +00:00
|
|
|
The `net` module is a client-side API for issuing HTTP(S) requests. It is
|
2016-11-01 03:05:23 +00:00
|
|
|
similar to the [HTTP](https://nodejs.org/api/http.html) and
|
2016-10-20 11:57:08 +00:00
|
|
|
[HTTPS](https://nodejs.org/api/https.html) modules of Node.js but uses
|
2016-10-31 22:48:06 +00:00
|
|
|
Chromium's native networking library instead of the Node.js implementation,
|
2020-10-21 02:55:06 +00:00
|
|
|
offering better support for web proxies. It also supports checking network status.
|
2016-10-20 10:30:03 +00:00
|
|
|
|
2016-10-31 22:48:06 +00:00
|
|
|
The following is a non-exhaustive list of why you may consider using the `net`
|
2016-10-20 10:30:03 +00:00
|
|
|
module instead of the native Node.js modules:
|
2016-10-31 22:48:06 +00:00
|
|
|
|
2016-10-20 10:30:03 +00:00
|
|
|
* Automatic management of system proxy configuration, support of the wpad
|
2016-11-01 03:05:23 +00:00
|
|
|
protocol and proxy pac configuration files.
|
2016-10-18 17:14:43 +00:00
|
|
|
* Automatic tunneling of HTTPS requests.
|
2016-10-20 10:30:03 +00:00
|
|
|
* Support for authenticating proxies using basic, digest, NTLM, Kerberos or
|
2016-11-01 03:05:23 +00:00
|
|
|
negotiate authentication schemes.
|
2016-10-20 10:30:03 +00:00
|
|
|
* Support for traffic monitoring proxies: Fiddler-like proxies used for access
|
2016-11-01 03:05:23 +00:00
|
|
|
control and monitoring.
|
2016-10-18 17:14:43 +00:00
|
|
|
|
2019-04-02 14:41:19 +00:00
|
|
|
The API components (including classes, methods, properties and event names) are similar to those used in
|
2016-10-20 10:30:03 +00:00
|
|
|
Node.js.
|
2016-10-19 16:19:28 +00:00
|
|
|
|
2019-04-02 14:41:19 +00:00
|
|
|
Example usage:
|
2016-10-19 16:05:38 +00:00
|
|
|
|
2016-10-18 17:14:43 +00:00
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
const { app } = require('electron')
|
2020-02-03 22:43:22 +00:00
|
|
|
app.whenReady().then(() => {
|
2018-09-13 16:10:51 +00:00
|
|
|
const { net } = require('electron')
|
2016-10-19 16:05:38 +00:00
|
|
|
const request = net.request('https://github.com')
|
|
|
|
request.on('response', (response) => {
|
2016-10-20 12:42:15 +00:00
|
|
|
console.log(`STATUS: ${response.statusCode}`)
|
|
|
|
console.log(`HEADERS: ${JSON.stringify(response.headers)}`)
|
2016-10-19 16:05:38 +00:00
|
|
|
response.on('data', (chunk) => {
|
|
|
|
console.log(`BODY: ${chunk}`)
|
|
|
|
})
|
|
|
|
response.on('end', () => {
|
2016-10-20 12:42:15 +00:00
|
|
|
console.log('No more data in response.')
|
2016-10-19 16:05:38 +00:00
|
|
|
})
|
2016-10-19 13:34:21 +00:00
|
|
|
})
|
2016-10-19 16:05:38 +00:00
|
|
|
request.end()
|
2016-10-18 17:14:43 +00:00
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-10-20 11:57:08 +00:00
|
|
|
The `net` API can be used only after the application emits the `ready` event.
|
|
|
|
Trying to use the module before the `ready` event will throw an error.
|
|
|
|
|
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)`
|
|
|
|
|
2022-12-05 23:17:37 +00:00
|
|
|
* `options` ([ClientRequestConstructorOptions](client-request.md#new-clientrequestoptions) | string) - The `ClientRequest` constructor options.
|
2016-10-19 13:34:21 +00:00
|
|
|
|
2016-12-19 17:40:07 +00:00
|
|
|
Returns [`ClientRequest`](./client-request.md)
|
2016-10-18 17:14:43 +00:00
|
|
|
|
2016-11-10 20:25:26 +00:00
|
|
|
Creates a [`ClientRequest`](./client-request.md) instance using the provided
|
|
|
|
`options` which are directly forwarded 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.
|
2020-10-21 02:55:06 +00:00
|
|
|
|
2023-02-20 20:57:38 +00:00
|
|
|
### `net.fetch(input[, init])`
|
|
|
|
|
|
|
|
* `input` string | [Request](https://nodejs.org/api/globals.html#request)
|
|
|
|
* `init` [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/fetch#options) (optional)
|
|
|
|
|
|
|
|
Returns `Promise<GlobalResponse>` - see [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response).
|
|
|
|
|
|
|
|
Sends a request, similarly to how `fetch()` works in the renderer, using
|
|
|
|
Chrome's network stack. This differs from Node's `fetch()`, which uses
|
|
|
|
Node.js's HTTP stack.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
async function example () {
|
|
|
|
const response = await net.fetch('https://my.app')
|
|
|
|
if (response.ok) {
|
|
|
|
const body = await response.json()
|
|
|
|
// ... use the result.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
This method will issue requests from the [default
|
|
|
|
session](session.md#sessiondefaultsession). To send a `fetch` request from
|
|
|
|
another session, use [ses.fetch()](session.md#sesfetchinput-init).
|
|
|
|
|
|
|
|
See the MDN documentation for
|
|
|
|
[`fetch()`](https://developer.mozilla.org/en-US/docs/Web/API/fetch) for more
|
|
|
|
details.
|
|
|
|
|
|
|
|
Limitations:
|
|
|
|
|
|
|
|
* `net.fetch()` does not support the `data:` or `blob:` schemes.
|
|
|
|
* The value of the `integrity` option is ignored.
|
|
|
|
* The `.type` and `.url` values of the returned `Response` object are
|
|
|
|
incorrect.
|
|
|
|
|
2020-10-21 02:55:06 +00:00
|
|
|
### `net.isOnline()`
|
|
|
|
|
2021-11-16 04:13:18 +00:00
|
|
|
Returns `boolean` - Whether there is currently internet connection.
|
2020-10-21 02:55:06 +00:00
|
|
|
|
|
|
|
A return value of `false` is a pretty strong indicator that the user
|
|
|
|
won't be able to connect to remote sites. However, a return value of
|
|
|
|
`true` is inconclusive; even if some link is up, it is uncertain
|
|
|
|
whether a particular connection attempt to a particular remote site
|
|
|
|
will be successful.
|
|
|
|
|
|
|
|
## Properties
|
|
|
|
|
|
|
|
### `net.online` _Readonly_
|
|
|
|
|
2021-11-16 04:13:18 +00:00
|
|
|
A `boolean` property. Whether there is currently internet connection.
|
2020-10-21 02:55:06 +00:00
|
|
|
|
|
|
|
A return value of `false` is a pretty strong indicator that the user
|
|
|
|
won't be able to connect to remote sites. However, a return value of
|
|
|
|
`true` is inconclusive; even if some link is up, it is uncertain
|
|
|
|
whether a particular connection attempt to a particular remote site
|
|
|
|
will be successful.
|