electron/docs/api/chrome-command-line-switche...

195 строки
6.0 KiB
Markdown
Исходник Обычный вид История

2016-05-18 02:02:54 +03:00
# Supported Chrome Command Line Switches
2016-04-22 01:39:12 +03:00
> Command line switches supported by Electron.
You can use [app.commandLine.appendSwitch][append-switch] to append them in
your app's main script before the [ready][ready] event of the [app][app] module
is emitted:
```javascript
2018-09-13 19:10:51 +03:00
const { app } = require('electron')
app.commandLine.appendSwitch('remote-debugging-port', '8315')
app.commandLine.appendSwitch('host-rules', 'MAP * 127.0.0.1')
app.on('ready', () => {
// Your code here
})
```
2015-06-16 11:13:46 +03:00
## --ignore-connections-limit=`domains`
Ignore the connections limit for `domains` list separated by `,`.
2015-06-16 11:13:46 +03:00
## --disable-http-cache
Disables the disk cache for HTTP requests.
## --disable-http2
Disable HTTP/2 and SPDY/3.1 protocols.
## --lang
Set a custom locale.
2017-05-15 19:42:57 +03:00
## --inspect=`port` and --inspect-brk=`port`
Debug-related flags, see the [Debugging the Main Process][debugging-main-process] guide for details.
## --remote-debugging-port=`port`
Enables remote debugging over HTTP on the specified `port`.
2017-05-15 20:38:20 +03:00
## --disk-cache-size=`size`
Forces the maximum disk space to be used by the disk cache, in bytes.
2015-11-13 07:22:08 +03:00
## --js-flags=`flags`
Specifies the flags passed to the Node.js engine. It has to be passed when starting
2015-11-13 07:22:08 +03:00
Electron if you want to enable the `flags` in the main process.
2017-11-24 13:13:57 +03:00
```sh
2015-11-13 07:22:08 +03:00
$ electron --js-flags="--harmony_proxies --harmony_collections" your-app
```
See the [Node.js documentation][node-cli] or run `node --help` in your terminal for a list of available flags. Additionally, run `node --v8-options` to see a list of flags that specifically refer to Node.js's V8 JavaScript engine.
## --proxy-server=`address:port`
Use a specified proxy server, which overrides the system setting. This switch
only affects requests with HTTP protocol, including HTTPS and WebSocket
requests. It is also noteworthy that not all proxy servers support HTTPS and
WebSocket requests. The proxy URL does not support username and password
authentication [per Chromium issue](https://bugs.chromium.org/p/chromium/issues/detail?id=615947).
## --proxy-bypass-list=`hosts`
Instructs Electron to bypass the proxy server for the given semi-colon-separated
list of hosts. This flag has an effect only if used in tandem with
`--proxy-server`.
For example:
2015-11-24 13:40:50 +03:00
```javascript
2018-09-13 19:10:51 +03:00
const { app } = require('electron')
2015-12-24 14:22:22 +03:00
app.commandLine.appendSwitch('proxy-bypass-list', '<local>;*.google.com;*foo.com;1.2.3.4:5678')
2015-11-24 13:40:50 +03:00
```
2015-11-24 13:40:50 +03:00
Will use the proxy server for all hosts except for local addresses (`localhost`,
`127.0.0.1` etc.), `google.com` subdomains, hosts that contain the suffix
`foo.com` and anything at `1.2.3.4:5678`.
2015-07-10 11:26:21 +03:00
## --proxy-pac-url=`url`
Uses the PAC script at the specified `url`.
## --no-proxy-server
Don't use a proxy server and always make direct connections. Overrides any other
proxy server flags that are passed.
## --host-rules=`rules`
A comma-separated list of `rules` that control how hostnames are mapped.
For example:
* `MAP * 127.0.0.1` Forces all hostnames to be mapped to 127.0.0.1
* `MAP *.google.com proxy` Forces all google.com subdomains to be resolved to
"proxy".
* `MAP test.com [::1]:77` Forces "test.com" to resolve to IPv6 loopback. Will
also force the port of the resulting socket address to be 77.
* `MAP * baz, EXCLUDE www.google.com` Remaps everything to "baz", except for
"www.google.com".
These mappings apply to the endpoint host in a net request (the TCP connect
and host resolver in a direct connection, and the `CONNECT` in an HTTP proxy
connection, and the endpoint host in a `SOCKS` proxy connection).
## --host-resolver-rules=`rules`
Like `--host-rules` but these `rules` only apply to the host resolver.
## --auth-server-whitelist=`url`
A comma-separated list of servers for which integrated authentication is enabled.
For example:
2017-11-24 13:13:57 +03:00
```sh
--auth-server-whitelist='*example.com, *foobar.com, *baz'
```
then any `url` ending with `example.com`, `foobar.com`, `baz` will be considered
for integrated authentication. Without `*` prefix the URL has to match exactly.
## --auth-negotiate-delegate-whitelist=`url`
A comma-separated list of servers for which delegation of user credentials is required.
Without `*` prefix the URL has to match exactly.
## --ignore-certificate-errors
Ignores certificate related errors.
2015-03-25 15:21:56 +03:00
## --ppapi-flash-path=`path`
2015-05-10 07:55:19 +03:00
Sets the `path` of the pepper flash plugin.
2015-05-10 07:55:19 +03:00
## --ppapi-flash-version=`version`
2015-05-10 07:55:19 +03:00
Sets the `version` of the pepper flash plugin.
2015-05-10 07:55:19 +03:00
## --log-net-log=`path`
Enables net log events to be saved and writes them to `path`.
## --disable-renderer-backgrounding
Prevents Chromium from lowering the priority of invisible pages' renderer
processes.
This flag is global to all renderer processes, if you only want to disable
throttling in one window, you can take the hack of
[playing silent audio][play-silent-audio].
2015-10-03 10:43:26 +03:00
## --enable-logging
Prints Chromium's logging into console.
This switch can not be used in `app.commandLine.appendSwitch` since it is parsed
earlier than user's app is loaded, but you can set the `ELECTRON_ENABLE_LOGGING`
environment variable to achieve the same effect.
2015-10-03 10:43:26 +03:00
2015-03-25 15:21:56 +03:00
## --v=`log_level`
2015-03-26 06:27:06 +03:00
Gives the default maximal active V-logging level; 0 is the default. Normally
positive values are used for V-logging levels.
2015-03-25 15:21:56 +03:00
2015-10-03 10:43:26 +03:00
This switch only works when `--enable-logging` is also passed.
2015-03-25 15:21:56 +03:00
## --vmodule=`pattern`
2015-03-26 06:27:06 +03:00
Gives the per-module maximal V-logging levels to override the value given by
`--v`. E.g. `my_module=2,foo*=3` would change the logging level for all code in
source files `my_module.*` and `foo*.*`.
2015-03-25 15:21:56 +03:00
2015-03-26 06:27:06 +03:00
Any pattern containing a forward or backward slash will be tested against the
whole pathname and not only the module. E.g. `*/foo/bar/*=2` would change the
logging level for all code in the source files under a `foo/bar` directory.
2015-03-25 15:21:56 +03:00
2015-10-03 10:43:26 +03:00
This switch only works when `--enable-logging` is also passed.
## --no-sandbox
Disables Chromium sandbox, which is now enabled by default.
Should only be used for testing.
[app]: app.md
[append-switch]: app.md#appcommandlineappendswitchswitch-value
[ready]: app.md#event-ready
[play-silent-audio]: https://github.com/atom/atom/pull/9485/files
[debugging-main-process]: ../tutorial/debugging-main-process.md
[node-cli]: https://nodejs.org/api/cli.html