Skip to content

Instantly share code, notes, and snippets.

View gsundin's full-sized avatar
🤠

Garrett Sundin gsundin

🤠
View GitHub Profile
@millermedeiros
millermedeiros / example.js
Last active September 10, 2022 03:06
execute multiple shell commands in series on node.js
// USAGE ------
// ============
var shell = require('./shellHelper');
// execute a single shell command
shell.exec('npm test --coverage', function(err){
console.log('executed test');
}});