Galerie und tage

This commit is contained in:
2021-11-23 17:56:26 +01:00
parent ff35366279
commit 5f873bee89
4693 changed files with 149659 additions and 301447 deletions

61
node_modules/bin-version/readme.md generated vendored
View File

@@ -1,72 +1,37 @@
# bin-version [![Build Status](https://travis-ci.com/sindresorhus/bin-version.svg?branch=master)](https://travis-ci.com/sindresorhus/bin-version)
# 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/npm/node-semver) format
> Get the version of a binary in [semver](https://github.com/isaacs/node-semver) format
## Install
```
$ npm install bin-version
```sh
$ npm install --save bin-version
```
## Usage
```
```sh
$ curl --version
curl 7.30.0 (x86_64-apple-darwin13.0)
```
```js
const binVersion = require('bin-version');
var binVersion = require('bin-version');
(async () => {
console.log(await binVersion('curl'));
//=> '7.30.0'
})();
binVersion('curl', function (err, version) {
console.log(version);
//=> 7.30.0
});
```
```
$ openssl version
OpenSSL 1.0.2d 9 Jul 2015
```
```js
(async () => {
console.log(await binVersion('openssl', {args: ['version']}));
//=> '1.0.2'
})();
```
## CLI
## API
### binVersion(binary, [options])
Returns a `Promise<string>` with the version of the `binary`.
#### binary
Type: `string`
The name of or path to the binary to get the version from.
#### options
Type: `object`
##### args
Type: `string[]`
Default: `['--version']`
The arguments to pass to `binary` so that it will print its version.
## Related
- [bin-version-cli](https://github.com/sindresorhus/bin-version-cli) - CLI for this module
- [find-versions](https://github.com/sindresorhus/find-versions) - Find semver versions in a string
See the [find-versions](https://github.com/sindresorhus/find-versions#cli) CLI.
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)
MIT © [Sindre Sorhus](http://sindresorhus.com)