npm module to hash the contents of files matched by globs
npm install -g glob-hash
Note: option -i/--include
is mandatory
Usage: glob-hash [options]
Options:
-h, --help output usage information
-V, --version output the version number
-i, --include <glob> Files to include. Mandatory. May be used multiple times.
-e, --exclude [glob] Files to exclude. May be used multiple times.
-a, --algorithm [string] The hashing algorithm to use. Defaults to "sha256".
-f, --files Show matched files and exit.
-j, --jail [path] A jail path. Reading outside the jail path will throw an error.
npm install glob-hash --save
var globHash = require('glob-hash');
globHash(options)
.then(function(hash) {
console.log(hash);
}, function(error) {
console.log(error);
});
Array include - An array of globs used to match the files to hash. Mandatory option.
Array exclude - An array of globs to exclude from the search.
String algorithm - The hashing algorithms to use. Defaults to "sha256", see crypto.getHashes.
Boolean files - Returns an array of files matched by the globs, instead of returning the hash.
String jail - A jail path. Reading outside the jail path will throw an error. Defaults to never throwing.
// Get hash
globHash({
include: ['src/**/*.js', '**/*.json'],
exclude: ['package.json'],
algorithm: 'sha256' // This is the default
})
.then(
function(result) {
console.log(result);
},
function(error) {
console.log(error);
}
);
// Get list of matched files
globHash({
include: ['src/**/*.js', '**/*.json'],
exclude: ['package.json'],
files: true
})
.then(
function(result) {
console.log(result);
},
function(error) {
console.log(error);
}
);
npm test