shitrocks-bash-runner
v1.0.0
Published
Run bash commands from Node.js for the ShitRocks project (uses node child_process.exec)
Readme
shitrocks-bash-runner
Run bash commands from Node.js using exec.
Usage
const { runBash } = require('shitrocks-bash-runner');
runBash('ls -la', (err, out, errOut) => {
if (err) console.error(err);
else console.log(out);
});2025-05-31 first attempt publishing to npm
npm login #must login cli, website is separate npm publish --access public
