Skip to content

Instantly share code, notes, and snippets.

View frankinedinburgh's full-sized avatar

digital-doodle frankinedinburgh

  • Front End Developer
  • Dublin, Ireland
View GitHub Profile
@morrxy
morrxy / md5.js
Last active July 15, 2018 11:15
[nodejs md5] #nodejs #md5
var data = "do shash'owania"
var crypto = require('crypto')
crypto.createHash('md5').update(data).digest("hex")