Skip to content

Instantly share code, notes, and snippets.

@aaronpk
Created August 24, 2015 18:52
Show Gist options
  • Save aaronpk/0e665800812f73f25e1a to your computer and use it in GitHub Desktop.
Save aaronpk/0e665800812f73f25e1a to your computer and use it in GitHub Desktop.
var request = require('request');
var crypto = require('crypto');
var hash = crypto.createHash('sha256');
hash.setEncoding('hex');
var fp = request.get('http://www.google.com/favicon.ico').on('end', function(){
hash.end();
console.log("Request finished. Hash: " + hash.read());
}).pipe(hash);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment