git-describe
This Node.js module runs git describe on the working directory or any
other directory and parses the output to individual components. Additionally,
if your tags follow semantic versioning the semver will be parsed and
supplemented with the git describe information as build metadata.
Because this module is primarily meant for init sequences and the like, it only
offers a straightforward synchronous API.
Installation
Available from npm:
npm install git-describe
Usage
The module exports a function taking an optional directory (defaults to
working directory) and an optional options object. It returns an object
containing the parsed information, or throws an Error if the git command
fails.
var gitDescribe = require('git-describe');
var gitInfo = gitDescribe();
var gitInfo = gitDescribe(__dirname);
var gitInfo = gitDescribe(__dirname, {
longSemver: true,
dirtySemver: false
});
Example output
{ dirty: false,
hash: 'g3c9c15b',
distance: 6,
tag: 'v2.1.0-beta',
semver: SemVer,
suffix: '6-g3c9c15b',
raw: 'v2.1.0-beta-6-g3c9c15b',
semverString: 'v2.1.0-beta+6.g3c9c15b' }
Options
dirtySemver | true | Appends '.dirty' to semverString if repo state is dirty (similar to --dirty) |
longSemver | false | Always add commit distance and hash to semverString (similar to --long) |
requireAnnotated | false | Uses --tags if false, so that simple git tags are allowed |
match | 'v*' | Uses --match to filter tag names |
customArguments | [] | Array of additional arguments to pass to git describe |