From 212cd67f08be818c601ea1575a3824fa846f1c4f Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Mon, 10 Nov 2014 11:53:12 -0800 Subject: [PATCH] Ports are limited to 64k --- docs/api/chrome-command-line-switches.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/chrome-command-line-switches.md b/docs/api/chrome-command-line-switches.md index 158e147d4626..6ac57ac97d88 100644 --- a/docs/api/chrome-command-line-switches.md +++ b/docs/api/chrome-command-line-switches.md @@ -7,7 +7,7 @@ module is emitted: ```javascript var app = require('app'); -app.commandLine.appendSwitch('remote-debugging-port', '88315'); +app.commandLine.appendSwitch('remote-debugging-port', '8315'); app.commandLine.appendSwitch('host-rules', 'MAP * 127.0.0.1'); app.on('ready', function() {