
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
git-describe
Advanced tools
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.
Available from npm:
npm install git-describe
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');
// Target working directory
var gitInfo = gitDescribe();
// Target the directory containing the calling script
// This is more reliable than the working directory
var gitInfo = gitDescribe(__dirname);
// With options (see below)
var gitInfo = gitDescribe(__dirname, {
longSemver: true,
dirtySemver: false
});
{ dirty: false,
hash: 'g3c9c15b',
distance: 6,
tag: 'v2.1.0-beta',
semver: SemVer, // SemVer instance, see https://github.com/npm/node-semver
suffix: '6-g3c9c15b',
raw: 'v2.1.0-beta-6-g3c9c15b',
semverString: 'v2.1.0-beta+6.g3c9c15b' }
Option | Default | Description |
---|---|---|
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 |
FAQs
Git describe information at runtime, with semver support
The npm package git-describe receives a total of 66,294 weekly downloads. As such, git-describe popularity was classified as popular.
We found that git-describe demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.