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/somerenslust.komma.pro/node_modules/bin-version/readme.md
# bin-version [![Build Status](https://travis-ci.org/sindresorhus/bin-version.svg?branch=master)](https://travis-ci.org/sindresorhus/bin-version)

> Get the version of a binary in [semver](https://github.com/isaacs/node-semver) format


## Install

```sh
$ npm install --save bin-version
```


## Usage

```sh
$ curl --version
curl 7.30.0 (x86_64-apple-darwin13.0)
```

```js
var binVersion = require('bin-version');

binVersion('curl', function (err, version) {
	console.log(version);
	//=> 7.30.0
});
```


## CLI

See the [find-versions](https://github.com/sindresorhus/find-versions#cli) CLI.


## License

MIT © [Sindre Sorhus](http://sindresorhus.com)