backoffice/node_modules/bin-check
root ab9f8bb658 first commit 2020-02-06 10:09:39 +00:00
..
index.js first commit 2020-02-06 10:09:39 +00:00
license first commit 2020-02-06 10:09:39 +00:00
package.json first commit 2020-02-06 10:09:39 +00:00
readme.md first commit 2020-02-06 10:09:39 +00:00

readme.md

bin-check Build Status

Check if a binary is working by checking its exit code

Install

$ npm install --save bin-check

Usage

var binCheck = require('bin-check');

binCheck('/bin/sh', ['--version'], function (err, works) {
	console.log(works);
	//=> true
});

API

binCheck(binary, command, callback)

binary

Type: string

Path to the binary.

command

Type: array
Default: ['--help']

Commands to run the binary with.

callback(err, works)

Type: function

works is a boolean which returns true if the binary is working correctly.

License

MIT © Kevin Mårtensson