A cryptographically secure PRNG for Node.js using crypto.randomBytes
npm install random-crypto
var random = require('random-crypto')
Generate a random number between 0 and max.
random.gen(100) // => 88
Generate a random number between min and max.
random.gen(-40, 100) // => -20