/bash-run

Simple framework for invoking bash commands from node.js scripts

Primary LanguageJavaScriptMIT LicenseMIT

bash-run

A simple framework for invoking bash commands from node.js scripts.

Example

const { run, runSync } = require("bash-run");

runSync(`echo "Hello, World!" > hello.txt`);

run("cat hello.txt").then(() => {
    console.log("success!");
}).catch((code) => {
    console.log(`failed with exit code ${code}`);
});