A Node-RED node for generate hashes from objects and values in node.
npm install node-red-contrib-object-hash``js
msg.payload = { "name": "John Doe" }
// Returns e317d3d9d64fceaa527beee730c6cc23d2e10555
// You can pass options supported by object-hash along with payload
msg.options = { "excludeValues": true }
// Returns 4cde23d99c51efdfe33c129bc2eea88a52c822a6
``