guestful / bin-version

Get the version of a binary in semver format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bin-version Build Status

Get the version of a binary in semver format

Install

$ npm install --save bin-version

Usage

$ curl --version
curl 7.30.0 (x86_64-apple-darwin13.0)
var binVersion = require('bin-version');

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

CLI

See the find-versions CLI.

License

MIT © Sindre Sorhus

About

Get the version of a binary in semver format

License:MIT License


Languages

Language:JavaScript 100.0%