Skip to content

Instantly share code, notes, and snippets.

View JOELJOSEPHCHALAKUDY's full-sized avatar

JOEL JOSEPH JOELJOSEPHCHALAKUDY

View GitHub Profile
@JOELJOSEPHCHALAKUDY
JOELJOSEPHCHALAKUDY / gist:699da1cbc3459ce5587d2da1a7cd069c
Created June 4, 2020 10:30 — forked from kitek/gist:1579117
NodeJS create md5 hash from string
var data = "do shash'owania";
var crypto = require('crypto');
crypto.createHash('md5').update(data).digest("hex");