frontity
Version:
Frontity cli and entry point to other packages
76 lines (64 loc) • 1.82 kB
text/typescript
import chalk from "chalk";
import { execSync, ExecSyncOptionsWithStringEncoding } from "child_process";
import path from "path";
const execOptions: ExecSyncOptionsWithStringEncoding = {
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) {
const packagePath = path.join(directory.trim(), "package.json");
try {
return require(packagePath).name;
} catch (e) {
return null;
}
}
function getProcessCommand(processId, processDirectory) {
let command = execSync(
"ps -o command -p " + processId + " | sed -n 2p",
execOptions
);
command = command.replace(/\n$/, "");
if (isProcessAReactApp(command)) {
const packageName = getPackageNameInDirectory(processDirectory);
return packageName ? packageName : command;
} else {
return command;
}
}
function getDirectoryOfProcessById(processId) {
return execSync(
"lsof -p " +
processId +
' | awk \'$4=="cwd" {for (i=9; i<=NF; i++) printf "%s ", $i}\'',
execOptions
).trim();
}
function getProcessForPort(port) {
try {
const processId = getProcessIdOnPort(port);
const directory = getDirectoryOfProcessById(processId);
const command = getProcessCommand(processId, directory);
return (
chalk.cyan(command) +
chalk.grey(" (pid " + processId + ")\n") +
chalk.blue(" in ") +
chalk.cyan(directory)
);
} catch (e) {
return null;
}
}
export default getProcessForPort;