hashing-stream
v0.1.1
Published
Pass thru stream which hashes incoming data
Readme
hashing-stream 
hashing-stream is a simple pass thru stream which hashes incoming data.
Installation
npm install hashing-streamUsage
var HashingStream = require('hashing-stream').HashingStream;
fs.createReadStream('fillerama.txt')
.pipe(new HashingStream('sha1'))
.on('end', function (hash) {
hash.digest('hex'); // => '65f3bd7e5bed93ebef9fb5338d9b9a19deb5c2d5'
});