Generating random strings (cryptographically strong) for NodeJS
npm install random-key$ npm install random-key
optional keys: 1-9, A-Z exclude(E, G, I, J, O) for human read
* len: the length of the generated string, default is 16
``javascript
var rand = require("random-key");
rand.generate(); // => eg: wexO23UXGezfTKHc
rand.generate(7); // => TShNQGc
rand.generateDigits(5); // => 08297
rand.generateBase30(5); // => K5UJ1
``
nodejs-random-string is licensed under the BSD license.