@expo/cli
Version:
91 lines (90 loc) • 3.26 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "createJsInspectorMiddleware", {
enumerable: true,
get: function() {
return createJsInspectorMiddleware;
}
});
function _chalk() {
const data = /*#__PURE__*/ _interop_require_default(require("chalk"));
_chalk = function() {
return data;
};
return data;
}
function _net() {
const data = /*#__PURE__*/ _interop_require_default(require("net"));
_net = function() {
return data;
};
return data;
}
function _tls() {
const data = require("tls");
_tls = function() {
return data;
};
return data;
}
function _url() {
const data = require("url");
_url = function() {
return data;
};
return data;
}
const _JsInspector = require("./JsInspector");
function _interop_require_default(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
function createJsInspectorMiddleware() {
return async function(req, res, next) {
const { origin, searchParams } = new (_url()).URL(req.url ?? '/', getServerBase(req));
const appId = searchParams.get('appId') || searchParams.get('applicationId');
if (!appId) {
res.writeHead(400).end('Missing application identifier ("?appId=...")');
return;
}
const app = await (0, _JsInspector.queryInspectorAppAsync)(origin, appId);
if (!app) {
res.writeHead(404).end('Unable to find inspector target from @react-native/dev-middleware');
console.warn(_chalk().default.yellow('No compatible apps connected. JavaScript Debugging can only be used with the Hermes engine.'));
return;
}
if (req.method === 'GET') {
const data = JSON.stringify(app);
res.writeHead(200, {
'Content-Type': 'application/json; charset=UTF-8',
'Cache-Control': 'no-cache',
'Content-Length': data.length.toString()
});
res.end(data);
} else if (req.method === 'POST' || req.method === 'PUT') {
try {
await (0, _JsInspector.openJsInspector)(origin, app);
} catch (error) {
// abort(Error: Command failed: osascript -e POSIX path of (path to application "google chrome")
// 15:50: execution error: Google Chrome got an error: Application isn’t running. (-600)
console.error(_chalk().default.red('Error launching JS inspector: ' + ((error == null ? void 0 : error.message) ?? 'Unknown error occurred')));
res.writeHead(500);
res.end();
return;
}
res.end();
} else {
res.writeHead(405);
}
};
}
function getServerBase(req) {
const scheme = req.socket instanceof _tls().TLSSocket && req.socket.encrypted === true ? 'https' : 'http';
const { localAddress, localPort } = req.socket;
const address = localAddress && _net().default.isIPv6(localAddress) ? `[${localAddress}]` : localAddress;
return `${scheme}:${address}:${localPort}`;
}
//# sourceMappingURL=createJsInspectorMiddleware.js.map
;