meteor-random
Meteor's Random Package, Stripped for Straight NodeRandom = require('meteor-random');
The random package provides several functions for generating random numbers. It uses a cryptographically strong pseudorandom number generator when possible, but falls back to a weaker random number generator when cryptographically strong randomness is not available (on older browsers or on servers that don't have enough entropy to seed the cryptographically strong generator).Random.id([n])
Random.secret([n])
Random.fraction()
Random.choice(arrayOrString)
Random.hexString(n)
For more information see Meteor's Random Docs