chensenlai 10988628a0 语音房项目初始化 | 5 年之前 | |
---|---|---|
.. | ||
index.js | 5 年之前 | |
license | 5 年之前 | |
package.json | 5 年之前 | |
readme.md | 5 年之前 |
Get the version of a binary in semver format
$ npm install --save bin-version
$ 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
});
See the find-versions CLI.
MIT © Sindre Sorhus