mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-01-12 22:46:30 +08:00
* Temporarily fork detect-port * Fix get process id * Use different package * Unnecessary var
78 lines
1.9 KiB
JavaScript
78 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 chalk = require('chalk');
|
|
var execSync = require('child_process').execSync;
|
|
var path = require('path');
|
|
|
|
var execOptions = {
|
|
encoding: 'utf8',
|
|
stdio: [
|
|
'pipe', // stdin (default)
|
|
'pipe', // stdout (default)
|
|
'ignore', //stderr
|
|
],
|
|
};
|
|
|
|
function isProcessAReactApp(processCommand) {
|
|
return /^node .*react-scripts\/scripts\/start\.js\s?$/.test(processCommand);
|
|
}
|
|
|
|
function getProcessIdOnPort(port) {
|
|
return execSync('lsof -i:' + port + ' -P -t -sTCP:LISTEN', execOptions)
|
|
.split('\n')[0]
|
|
.trim();
|
|
}
|
|
|
|
function getPackageNameInDirectory(directory) {
|
|
var packagePath = path.join(directory.trim(), 'package.json');
|
|
|
|
try {
|
|
return require(packagePath).name;
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function getProcessCommand(processId, processDirectory) {
|
|
var command = execSync(
|
|
'ps -o command -p ' + processId + ' | sed -n 2p',
|
|
execOptions
|
|
);
|
|
|
|
if (isProcessAReactApp(command)) {
|
|
const packageName = getPackageNameInDirectory(processDirectory);
|
|
return packageName ? packageName + '\n' : command;
|
|
} else {
|
|
return command;
|
|
}
|
|
}
|
|
|
|
function getDirectoryOfProcessById(processId) {
|
|
return execSync(
|
|
'lsof -p ' + processId + ' | awk \'$4=="cwd" {print $9}\'',
|
|
execOptions
|
|
).trim();
|
|
}
|
|
|
|
function getProcessForPort(port) {
|
|
try {
|
|
var processId = getProcessIdOnPort(port);
|
|
var directory = getDirectoryOfProcessById(processId);
|
|
var command = getProcessCommand(processId, directory);
|
|
return chalk.cyan(command) + chalk.blue(' in ') + chalk.cyan(directory);
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
module.exports = getProcessForPort;
|