
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
executable-harness
Advanced tools
Node.js - Electron - NW.js asynchronous controller for binary executables or scripts
Node.js - Electron - NW.js asynchronous controller for binary executables or scripts
npm install executable-harness
const executableHarness = require("executable-harness");
let test = {};
test.executable = "/test/executable";
test.stdoutFunction = function (stdout) {
console.log(stdout);
};
executableHarness.startExecutable(test);
child_process
All settings of an executable or script executed by executable-harness are stored in a JavaScript object with an arbitrary name and the following object properties:
executable
String for the filename of a binary executable or script:
either filename on PATH or full pathname
This object property is mandatory.
test.executable = "/full/path/to/executable";
or
test.executable = "executable-on-path";
There are two possible configurations when a script has to be started:
The executable object property points to the appropriate script interpreter and the executableArguments object property holds the script full pathname. In this case, the script is executed by the selected script interpreter regardless of the operating system.
The executable object property holds the script full pathname and the script is executed by the default interpreter of the operating system, if any.
stdoutFunction
will be executed every time data is available on STDOUT
The only parameter passed to the stdoutFunction is the STDOUT String.
test.stdoutFunction = function (stdout) {
document.getElementById("DOM-element-id").textContent = stdout;
};
stderrFunction
will be executed every time data is available on STDERR
The only parameter passed to the stderrFunction is the STDERR String.
test.stderrFunction = function (stderr) {
console.log("STDERR:\n");
console.log(stderr);
};
errorFunction
will be executed on executable error
The only parameter passed to the errorFunction is the error Object.
The errorFunction can generate a message when executable is not found:
test.errorFunction = function (error) {
if (error.code === "ENOENT") {
console.log("Executable was not found.");
}
};
exitFunction
will be executed when executable has ended
The only parameter passed to the exitFunction is the exit code String.
The exitFunction can generate a message when executable is not found:
test.exitFunction = function (exitCode) {
if (exitCode === 2) {
console.log("Executable was not found.");
}
};
executableArguments
Array for command-line arguments
test.executableArguments = [];
test.executableArguments.push("argument-one");
test.executableArguments.push("argument-two");
options
Object for executable options passed to the child_process core module.
Click here for a full list of all available child_process options.
options.cwd
String for a new current working directory of the selected executable
test.options = {};
test.options.cwd = "/full/path/to/current-working-directory";;
options.env
Object for a new environment of the selected executable
Executable environment with an inherited PATH and a new variable:
test.options = {};
test.options.env = {};
test.options.env.PATH = process.env.PATH;
test.options.env.TEST = "test";
options.detached
Boolean option for starting detached processes like servers
options.detached must be set to true and
options.stdio must be set to "ignore" to
start a detached process without receiving anything from it.
A process detached with the above options can run even after its parent has ended.
Example settings for a server application:
let server = {};
server.executable = "/path/to/server-application";
server.options = {};
server.options.detached = true;
server.options.stdio = "ignore";
const executableHarness = require("executable-harness");
executableHarness.startExecutable(server);
server.executableHandler.unref();
inputData
String or Function supplying user data as its return value.
inputData is written on executable STDIN.
inputData function with no dependencies:
test.inputData = function () {
let data = document.getElementById("data-input").value;
return data;
}
executable-harness can also start and communicate with interactive executables or scripts having their own event loops and capable of repeatedly receiving STDIN input. Use the following code to send data to an interactive executable or script waiting for input on STDIN:
let data = document.getElementById("data-input").value;
test.executableHandler.stdin.write(data);
MIT 2018
Dimitar D. Mitov
FAQs
Node.js - Electron - NW.js asynchronous controller for binary executables or scripts
We found that executable-harness demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.