Simple MD5 hash in your Node.js application. Not recommended for security.
var crypto = require('crypto'); var data = "whatever"; var hashedValue = crypto.createHash('md5').update(data).digest("hex");