Skip to content

Instantly share code, notes, and snippets.

View boycott's full-sized avatar

Geoff Kaile boycott

View GitHub Profile
@brikis98
brikis98 / BinaryModules.js
Created December 1, 2011 00:45
Node.js performance tips
// Use built in or binary modules
var crypto = require('crypto');
var hash = crypto.createHmac("sha1",key).update(signatureBase).digest("base64");