outers
Version:
outers - a all in one package for your day to day use
43 lines • 2 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const node_util_1 = __importDefault(require("node:util"));
const node_child_process_1 = require("node:child_process"); // Import exec from child_process
const executor = node_util_1.default.promisify(node_child_process_1.exec);
/**
* Executes a command and returns the output and error.
* It is only for short-lived processes. long-lived processes are not recommended for security reasons.
* @param command - The command to execute.
* @returns An object containing the output and error.
*/
function executeCommand(command) {
return __awaiter(this, void 0, void 0, function* () {
try {
const { stdout, stderr } = yield executor(command);
return {
output: stdout,
error: stderr,
};
}
catch (error) {
console.error("Error executing command:", error);
return {
output: "",
error: error, // Return error message instead of the error object
};
}
});
}
exports.default = executeCommand;
//# sourceMappingURL=exec.command.js.map