//create 64 bytes of random digits on cli terminal with crypto
$ node
$ require('crypto').randomBytes(64).toString('hex')
require("crypto").createHmac("sha256", "password")
.update("If you love node so much why don't you marry it?")
.digest("hex");