backoffice/node_modules/bin-version
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-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