Check if a binary is working by checking its exit code
npm install bin-check
import binCheck from '@xhmikosr/bin-check';
binCheck('/bin/sh', ['--version']).then(works => {
console.log(works);
//=> true
});
Returns a Promise
for a boolean
.
Returns a boolean
.
Type: string
Path to the binary.
- Type:
Array
- Default:
['--help']
Arguments to run the binary with.
MIT © Kevin Mårtensson