mirror of
https://github.com/status-im/react-native.git
synced 2025-01-27 09:45:04 +00:00
c1faabcdf6
Summary: This allows opening the Chrome debugger on OS X, Linux, and Windows, and succeeds the previous PR which used [browser-launcher2](https://github.com/benderjs/browser-launcher2) and included a `--dangerouslyDisableChromeDebuggerWebSecurity` option: https://github.com/facebook/react-native/pull/2406 [opn](https://github.com/sindresorhus/opn) is cross-platform and much simpler than browser-launcher2 (since we don't have to manage the opened Chrome instance; the OS will just use the default instance). Closes https://github.com/facebook/react-native/pull/3394 Reviewed By: mkonicek Differential Revision: D2550996 Pulled By: frantic fb-gh-sync-id: fa4cbe55542562f30f77e0a6ab4bc53980ee13aa
62 lines
1.9 KiB
JavaScript
62 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
'use strict';
|
|
|
|
var execFile = require('child_process').execFile;
|
|
var fs = require('fs');
|
|
var opn = require('opn');
|
|
var path = require('path');
|
|
|
|
function getChromeAppName() {
|
|
switch (process.platform) {
|
|
case 'darwin':
|
|
return 'google chrome';
|
|
case 'win32':
|
|
return 'chrome';
|
|
default:
|
|
return 'google-chrome';
|
|
}
|
|
}
|
|
|
|
module.exports = function(options, isDebuggerConnected) {
|
|
return function(req, res, next) {
|
|
if (req.url === '/debugger-ui') {
|
|
var debuggerPath = path.join(__dirname, 'debugger.html');
|
|
res.writeHead(200, {'Content-Type': 'text/html'});
|
|
fs.createReadStream(debuggerPath).pipe(res);
|
|
} else if (req.url === '/debuggerWorker.js') {
|
|
var workerPath = path.join(__dirname, 'debuggerWorker.js');
|
|
res.writeHead(200, {'Content-Type': 'application/javascript'});
|
|
fs.createReadStream(workerPath).pipe(res);
|
|
} else if (req.url === '/launch-safari-devtools') {
|
|
// TODO: remove `console.log` and dev tools binary
|
|
console.log(
|
|
'We removed support for Safari dev-tools. ' +
|
|
'If you still need this, please let us know.'
|
|
);
|
|
} else if (req.url === '/launch-chrome-devtools') {
|
|
if (isDebuggerConnected()) {
|
|
// Dev tools are already open; no need to open another session
|
|
res.end('OK');
|
|
return;
|
|
}
|
|
var debuggerURL = 'http://localhost:' + options.port + '/debugger-ui';
|
|
console.log('Launching Dev Tools...');
|
|
opn(debuggerURL, {app: [getChromeAppName()]}, function(err) {
|
|
if (err) {
|
|
console.error('Google Chrome exited with error:', err);
|
|
}
|
|
});
|
|
res.end('OK');
|
|
} else {
|
|
next();
|
|
}
|
|
};
|
|
};
|