const app = require('electron').app;
app.commandLine.appendSwitch('remote-debugging-port', '8315');
app.commandLine.appendSwitch('host-rules', 'MAP * 127.0.0.1');
app.on('ready', function() {
});
--client-certificate=path
--ignore-connections-limit=domains
--disable-http-cache
--remote-debugging-port=port
--js-flags=flags
$ electron --js-flags="--harmony_proxies --harmony_collections" your-app
--proxy-server=address:port
--proxy-bypass-list=hosts
例如:
app.commandLine.appendSwitch('proxy-bypass-list', '<local>;*.google.com;*foo.com;1.2.3.4:5678')
--proxy-pac-url=url
--no-proxy-server
--host-rules=rules
例如:
MAP * 127.0.0.1
强制所有主机名映射到 127.0.0.1MAP *.google.com proxy
强制所有 google.com 子域 使用 "proxy".MAP test.com [::1]:77
强制 "test.com" 使用 IPv6 回环地址. 也强制使用端口 77.MAP * baz, EXCLUDE www.google.com
重新全部映射到 "baz", 除了"www.google.com".
--host-resolver-rules=rules
--ignore-certificate-errors
--ppapi-flash-path=path
--ppapi-flash-version=version
--log-net-log=path
--ssl-version-fallback-min=version
--cipher-suite-blacklist=cipher_suites
--disable-renderer-backgrounding
--enable-logging
--v=log_level
--vmodule=pattern
这个开关只有在
--enable-logging
开启时有效.
请发表评论