Simple library to generate an hash relative to current day.
npm install hash-now --save
var hashNow = require('hash-now');
hashNow('yourSecreteWord');
// => return an hash of day like '984d047e111265672edaf38feb9d8be4'
hashNow(secret[, precision = 'day', utc = true])
Name | Type | Default | Description |
---|---|---|---|
secret | string | required, your secret key | |
precision | string | day | optional, hash precision can be "day", "hour", "minute", "month", "year" |
utc | boolean | true | optional, utc date |
HashNow is open-sourced software licensed under the MIT license