2016-10-18 20:14:43 +03:00
|
|
|
# net
|
|
|
|
|
2016-11-01 01:48:06 +03:00
|
|
|
> Issue HTTP/HTTPS requests using Chromium's native networking library
|
2016-10-18 20:14:43 +03:00
|
|
|
|
2024-01-05 00:20:37 +03:00
|
|
|
Process: [Main](../glossary.md#main-process), [Utility](../glossary.md#utility-process)
|
2016-11-03 20:26:00 +03:00
|
|
|
|
2016-10-20 13:30:03 +03:00
|
|
|
The `net` module is a client-side API for issuing HTTP(S) requests. It is
|
2016-11-01 06:05:23 +03:00
|
|
|
similar to the [HTTP](https://nodejs.org/api/http.html) and
|
2016-10-20 14:57:08 +03:00
|
|
|
[HTTPS](https://nodejs.org/api/https.html) modules of Node.js but uses
|
2016-11-01 01:48:06 +03:00
|
|
|
Chromium's native networking library instead of the Node.js implementation,
|
2020-10-21 05:55:06 +03:00
|
|
|
offering better support for web proxies. It also supports checking network status.
|
2016-10-20 13:30:03 +03:00
|
|
|
|
2016-11-01 01:48:06 +03:00
|
|
|
The following is a non-exhaustive list of why you may consider using the `net`
|
2016-10-20 13:30:03 +03:00
|
|
|
module instead of the native Node.js modules:
|
2016-11-01 01:48:06 +03:00
|
|
|
|
2016-10-20 13:30:03 +03:00
|
|
|
* Automatic management of system proxy configuration, support of the wpad
|
2016-11-01 06:05:23 +03:00
|
|
|
protocol and proxy pac configuration files.
|
2016-10-18 20:14:43 +03:00
|
|
|
* Automatic tunneling of HTTPS requests.
|
2016-10-20 13:30:03 +03:00
|
|
|
* Support for authenticating proxies using basic, digest, NTLM, Kerberos or
|
2016-11-01 06:05:23 +03:00
|
|
|
negotiate authentication schemes.
|
2016-10-20 13:30:03 +03:00
|
|
|
* Support for traffic monitoring proxies: Fiddler-like proxies used for access
|
2016-11-01 06:05:23 +03:00
|
|
|
control and monitoring.
|
2016-10-18 20:14:43 +03:00
|
|
|
|
2019-04-02 17:41:19 +03:00
|
|
|
The API components (including classes, methods, properties and event names) are similar to those used in
|
2016-10-20 13:30:03 +03:00
|
|
|
Node.js.
|
2016-10-19 19:19:28 +03:00
|
|
|
|
2019-04-02 17:41:19 +03:00
|
|
|
Example usage:
|
2016-10-19 19:05:38 +03:00
|
|
|
|
2023-11-21 10:50:08 +03:00
|
|
|
```js
|
2018-09-13 19:10:51 +03:00
|
|
|
const { app } = require('electron')
|
2020-02-04 01:43:22 +03:00
|
|
|
app.whenReady().then(() => {
|
2018-09-13 19:10:51 +03:00
|
|
|
const { net } = require('electron')
|
2016-10-19 19:05:38 +03:00
|
|
|
const request = net.request('https://github.com')
|
|
|
|
request.on('response', (response) => {
|
2016-10-20 15:42:15 +03:00
|
|
|
console.log(`STATUS: ${response.statusCode}`)
|
|
|
|
console.log(`HEADERS: ${JSON.stringify(response.headers)}`)
|
2016-10-19 19:05:38 +03:00
|
|
|
response.on('data', (chunk) => {
|
|
|
|
console.log(`BODY: ${chunk}`)
|
|
|
|
})
|
|
|
|
response.on('end', () => {
|
2016-10-20 15:42:15 +03:00
|
|
|
console.log('No more data in response.')
|
2016-10-19 19:05:38 +03:00
|
|
|
})
|
2016-10-19 16:34:21 +03:00
|
|
|
})
|
2016-10-19 19:05:38 +03:00
|
|
|
request.end()
|
2016-10-18 20:14:43 +03:00
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-10-20 14:57:08 +03: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 20:14:43 +03:00
|
|
|
## Methods
|
|
|
|
|
2016-10-19 16:34:21 +03:00
|
|
|
The `net` module has the following methods:
|
|
|
|
|
|
|
|
### `net.request(options)`
|
|
|
|
|
2022-12-06 02:17:37 +03:00
|
|
|
* `options` ([ClientRequestConstructorOptions](client-request.md#new-clientrequestoptions) | string) - The `ClientRequest` constructor options.
|
2016-10-19 16:34:21 +03:00
|
|
|
|
2016-12-19 20:40:07 +03:00
|
|
|
Returns [`ClientRequest`](./client-request.md)
|
2016-10-18 20:14:43 +03:00
|
|
|
|
2016-11-10 23:25:26 +03: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 05:55:06 +03:00
|
|
|
|
2023-02-20 23:57:38 +03:00
|
|
|
### `net.fetch(input[, init])`
|
|
|
|
|
2023-03-27 20:00:55 +03:00
|
|
|
* `input` string | [GlobalRequest](https://nodejs.org/api/globals.html#request)
|
2024-05-08 02:20:47 +03:00
|
|
|
* `init` [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/fetch#options) & \{ bypassCustomProtocolHandlers?: boolean \} (optional)
|
2023-02-20 23:57:38 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-05-28 21:15:18 +03:00
|
|
|
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).
|
2023-02-20 23:57:38 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2024-05-28 21:15:18 +03:00
|
|
|
By default, requests made with `net.fetch` can be made to [custom protocols](protocol.md)
|
|
|
|
as well as `file:`, and will trigger [webRequest](web-request.md) handlers if present.
|
|
|
|
When the non-standard `bypassCustomProtocolHandlers` option is set in RequestInit,
|
|
|
|
custom protocol handlers will not be called for this request. This allows forwarding an
|
2023-03-27 20:00:55 +03:00
|
|
|
intercepted request to the built-in handler. [webRequest](web-request.md)
|
|
|
|
handlers will still be triggered when bypassing custom protocols.
|
|
|
|
|
|
|
|
```js
|
|
|
|
protocol.handle('https', (req) => {
|
|
|
|
if (req.url === 'https://my-app.com') {
|
|
|
|
return new Response('<body>my app</body>')
|
|
|
|
} else {
|
|
|
|
return net.fetch(req, { bypassCustomProtocolHandlers: true })
|
|
|
|
}
|
|
|
|
})
|
|
|
|
```
|
2023-03-03 02:47:45 +03:00
|
|
|
|
2024-01-05 00:20:37 +03:00
|
|
|
Note: in the [utility process](../glossary.md#utility-process) custom protocols
|
|
|
|
are not supported.
|
|
|
|
|
2020-10-21 05:55:06 +03:00
|
|
|
### `net.isOnline()`
|
|
|
|
|
2021-11-16 07:13:18 +03:00
|
|
|
Returns `boolean` - Whether there is currently internet connection.
|
2020-10-21 05:55:06 +03: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.
|
|
|
|
|
2024-07-01 21:45:49 +03:00
|
|
|
### `net.resolveHost(host, [options])`
|
2023-05-02 10:53:00 +03:00
|
|
|
|
|
|
|
* `host` string - Hostname to resolve.
|
|
|
|
* `options` Object (optional)
|
|
|
|
* `queryType` string (optional) - Requested DNS query type. If unspecified,
|
|
|
|
resolver will pick A or AAAA (or both) based on IPv4/IPv6 settings:
|
|
|
|
* `A` - Fetch only A records
|
|
|
|
* `AAAA` - Fetch only AAAA records.
|
|
|
|
* `source` string (optional) - The source to use for resolved addresses.
|
|
|
|
Default allows the resolver to pick an appropriate source. Only affects use
|
|
|
|
of big external sources (e.g. calling the system for resolution or using
|
|
|
|
DNS). Even if a source is specified, results can still come from cache,
|
|
|
|
resolving "localhost" or IP literals, etc. One of the following values:
|
|
|
|
* `any` (default) - Resolver will pick an appropriate source. Results could
|
|
|
|
come from DNS, MulticastDNS, HOSTS file, etc
|
|
|
|
* `system` - Results will only be retrieved from the system or OS, e.g. via
|
|
|
|
the `getaddrinfo()` system call
|
|
|
|
* `dns` - Results will only come from DNS queries
|
|
|
|
* `mdns` - Results will only come from Multicast DNS queries
|
|
|
|
* `localOnly` - No external sources will be used. Results will only come
|
|
|
|
from fast local sources that are available no matter the source setting,
|
|
|
|
e.g. cache, hosts file, IP literal resolution, etc.
|
|
|
|
* `cacheUsage` string (optional) - Indicates what DNS cache entries, if any,
|
|
|
|
can be used to provide a response. One of the following values:
|
|
|
|
* `allowed` (default) - Results may come from the host cache if non-stale
|
|
|
|
* `staleAllowed` - Results may come from the host cache even if stale (by
|
|
|
|
expiration or network changes)
|
|
|
|
* `disallowed` - Results will not come from the host cache.
|
|
|
|
* `secureDnsPolicy` string (optional) - Controls the resolver's Secure DNS
|
|
|
|
behavior for this request. One of the following values:
|
|
|
|
* `allow` (default)
|
|
|
|
* `disable`
|
|
|
|
|
|
|
|
Returns [`Promise<ResolvedHost>`](structures/resolved-host.md) - Resolves with the resolved IP addresses for the `host`.
|
|
|
|
|
2024-05-28 21:15:18 +03:00
|
|
|
This method will resolve hosts from the [default session](session.md#sessiondefaultsession).
|
|
|
|
To resolve a host from another session, use [ses.resolveHost()](session.md#sesresolvehosthost-options).
|
2023-05-02 10:53:00 +03:00
|
|
|
|
2020-10-21 05:55:06 +03:00
|
|
|
## Properties
|
|
|
|
|
|
|
|
### `net.online` _Readonly_
|
|
|
|
|
2021-11-16 07:13:18 +03:00
|
|
|
A `boolean` property. Whether there is currently internet connection.
|
2020-10-21 05:55:06 +03: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.
|