🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

head-hash

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

head-hash

Get the current commit hash.

0.3.0
latest
Source
npm
Version published
Weekly downloads
940
5.74%
Maintainers
1
Weekly downloads
 
Created
Source

head-hash Build status for head-hash

Get the current commit hash

Why?

  • Useful hash for cache busting.
  • Can be used as a build version.
  • Identify code without leaking secrets.

Install

npm install head-hash --save

Usage

Get it into your program.

const headHash = require('head-hash');

Get the hash of the current HEAD.

headHash().then((hash) => {
    console.log('hash:', hash);
});

API

headHash(option)

option

Type: object

cwd

Type: string
Default: process.cwd()

The directory who's HEAD you want to use for finding the latest commit.

short

Type: boolean
Default: false

Whether to shorten the hash to the shortest possible unique name of at least 7 characters.

Contributing

See our contributing guidelines for more details.

  • Fork it.
  • Make a feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request.

License

MPL-2.0 © Seth Holladay

Go make something, dang it.

Keywords

git

FAQs

Package last updated on 31 Aug 2017

Did you know?

Socket

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.

Install

Related posts