How to generate SHA256HMAC in Node.JS
Today I had to do this for my job (hash some info) and I think is a good opportunity to share the knowledge. Here is the code, you can simply copy it and paste it in a file called SHA256Hmac.js and run it.
let crypto;
try {
crypto = require('crypto')