HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/firetech.komma.pro/node_modules/bin-check/readme.md
# bin-check [![Build Status](https://travis-ci.org/kevva/bin-check.svg?branch=master)](https://travis-ci.org/kevva/bin-check)

> Check if a binary is working by checking its exit code


## Install

```
$ npm install --save bin-check
```


## Usage

```js
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](https://github.com/kevva)