1.0.0 • Published 11 years ago

hashd v1.0.0

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

SYNOPSIS

hash all the files recursively from a specified path, appreciate .ignore files. uses sha1 by default.

USAGE

Use as a lib

var hashd = require('hashd')
var hash = hashd('./path/to/files', { algorithm: 'md5', ignore: ['.gitignore', '.npmignore'] })
console.log(hash)

Use from the cli

npm install hashd -g
hashd ./path/to/files --algorithm sha1 --ignore '.gitignore .npmignore'