forked from node-inspector/node-inspector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
43 lines (38 loc) · 1.41 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Public API for node-inspector embedders
var url = require('url');
exports.buildInspectorUrl = buildInspectorUrl;
exports.buildWebSocketUrl = buildWebSocketUrl;
/**
* Build a URL for loading inspector UI in the browser.
* @param {string|undefined} inspectorHost as configured via --web-host
* @param {number} inspectorPort as configured via --web-port
* @param {number} debugPort as configured via --debug in the debugged app
*/
function buildInspectorUrl(inspectorHost, inspectorPort, debugPort, fileToShow, isHttps) {
var host = inspectorHost == '0.0.0.0' ? '127.0.0.1' : inspectorHost;
var parts = {
protocol: isHttps ? 'https' : 'http',
hostname: host,
port: inspectorPort,
pathname: '/',
search: '?ws=' + host + ':' + inspectorPort + '&port=' + debugPort
};
return url.format(parts);
}
/**
* Build a URL for the WebSocket endpoint.
* @param {string|undefined} inspectorHost as configured via --web-host
* @param {number} inspectorPort as configured via --web-port
* @param {number} debugPort as configured via --debug in the debugged app
*/
function buildWebSocketUrl(inspectorHost, inspectorPort, debugPort, fileToShow, isSecure) {
var parts = {
protocol: isSecure ? 'wss:' : 'ws:',
hostname: inspectorHost == '0.0.0.0' ? '127.0.0.1' : inspectorHost,
port: inspectorPort,
pathname: '/',
search: '?port=' + debugPort,
slashes: true
};
return url.format(parts);
}