Hashcode is a simple javascript module for generating hashcodes (integer representations) of objects.
npm install hashcode --save
const Hashcode = require('hashcode')
const obj = {
'foo' : 42,
'bar' : "hello world",
'baz' : false,
}
const hash = Hashcode.value(obj)
console.log(hash)