Check if a binary is working by checking its exit code
npm install @lesjoursfr/bin-check
import binCheck from "@lesjoursfr/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