node-keygen
node-keygen copied to clipboard
Random String generator for node.js
Results
1
node-keygen issues
Sort by
recently updated
recently updated
newest added
`Math.random()` is [not cryptographically random](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random). It seems worth mentioning this in the README, or switching to a random number generator which is considered cryptographically random, such as [crypto.randomBytes](https://nodejs.org/api/crypto.html#crypto_crypto_randombytes_size_callback) in Node.js.
enhancement