fallback-exec-sync
Fall back to shelljs if execSync cannot be installed. On Windows, execSync hards to be installed sometimes because of requirement for installation of node-gyp. Shelljs also has synchronous exec but a little slower than execSync. So one of solutions is that try to install execSync first and if failed, install shelljs.
Install
npm install fallback-exec-sync
Usage
var sh = require('fallback-exec-sync');
code = sh.run('echo 1');
console.log(code);
res = sh.exec('echo 1');
console.log(res.code);
console.log(res.output);
Test
npm test
License
Licensed under the MIT license.
Special thanks to